pat*_*rit 3 scala sliding scala-collections
这是 Scala 集合 API 的sliding()
:
/** Groups elements in fixed size blocks by passing a "sliding window"
* over them (as opposed to partitioning them, as is done in grouped.)
* @see [[scala.collection.Iterator]], method `sliding`
*
* @param size the number of elements per group
* @param step the distance between the first elements of successive
* groups
* @return An iterator producing ${coll}s of size `size`, except the
* last and the only element will be truncated if there are
* fewer elements than size.
*/
def sliding(size: Int, step: Int): Iterator[Repr] =
Run Code Online (Sandbox Code Playgroud)
理解这一点的一个简单方法是滑动很简单(0 until this.length by step).map(i => slice(i, i + size))
。但是这种解释在以下情况下不起作用size > step
:
object SlidingTest extends App {
val n = 10
val r1 = 0 until n
val r2 = new Range(start = 0, end = n, step = 1) {
override def sliding(size: Int, step: Int) =
(indices by step).iterator.map(i => slice(i, i + size))
}
for {
i <- 1 to 2*n
j <- 1 to 2*n
s1 = r1.sliding(i, j).toList.map(_.toList)
s2 = r2.sliding(i, j).toList.map(_.toList)
if s1 != s2
} println(s"Sliding fail for size=$i and step=$j: [s1=$s1; s2=$s2]")
}
Run Code Online (Sandbox Code Playgroud)
具体考虑r1 = 0 until 10
。根据文档,r1.sliding(size = 2, step = 1)
应该是这样的:
List(List(0, 1), List(1, 2), List(2, 3), List(3, 4), List(4, 5), List(5, 6), List(6, 7), List(7, 8), List(8, 9), List(9))
Run Code Online (Sandbox Code Playgroud)
但实际上是这样的:
List(List(0, 1), List(1, 2), List(2, 3), List(3, 4), List(4, 5), List(5, 6), List(6, 7), List(7, 8), List(8, 9))
Run Code Online (Sandbox Code Playgroud)
(即最后一个截断的切片丢失)。
从 Scaladoc 复制的另一个片段:
/** Returns an iterator which presents a "sliding window" view of
* another iterator. The first argument is the window size, and
* the second is how far to advance the window on each iteration;
* defaults to `1`. Example usages:
* {{{
* // Returns List(List(1, 2, 3), List(2, 3, 4), List(3, 4, 5))
* (1 to 5).iterator.sliding(3).toList
* // Returns List(List(1, 2, 3, 4), List(4, 5))
* (1 to 5).iterator.sliding(4, 3).toList
* // Returns List(List(1, 2, 3, 4))
* (1 to 5).iterator.sliding(4, 3).withPartial(false).toList
* // Returns List(List(1, 2, 3, 4), List(4, 5, 20, 25))
* // Illustrating that withPadding's argument is by-name.
* val it2 = Iterator.iterate(20)(_ + 5)
* (1 to 5).iterator.sliding(4, 3).withPadding(it2.next).toList
* }}}
*
* @note Reuse: $consumesAndProducesIterator
*/
def sliding[B >: A](size: Int, step: Int = 1): GroupedIterator[B] =
new GroupedIterator[B](self, size, step)
Run Code Online (Sandbox Code Playgroud)
我究竟做错了什么?
它对元素进行分组,并在所有内容分组后停止。
它不会在每个可能的步骤中分组。
scala> (1 to 100).sliding(size=100,step=1).toList.size
res0: Int = 1
scala> (1 to 100).sliding(size=99,step=1).toList.size
res1: Int = 2
Run Code Online (Sandbox Code Playgroud)
在您的示例中,您希望它创建一个额外的组,9
即使该集合已经被彻底分组。
您还展示了元素形成部分组的示例:
scala> (1 to 5).sliding(size=4,step=3).toList
res4: List[scala.collection.immutable.IndexedSeq[Int]] = List(Vector(1, 2, 3, 4), Vector(4, 5))
Run Code Online (Sandbox Code Playgroud)
由于5
未分组,因此需要额外的组。
编辑:Scaladoc 的可能改写:
size
如果size
剩余的元素少于要分组的元素,则生成 ${coll}s 大小的迭代器,除了最后一个元素(可能是唯一的元素)将被截断。