如何根据prev和curr元素的条件拆分迭代器?

时间:2015-04-16 15:42:28

标签: scala

我想将一个元素列表拆分成一个列表列表,以便内部列表中的相邻元素满足给定条件。

一个简单的条件是相邻元素是相等的。然后,如果输入为List(1,1,1,2,2,3,3,3,3),则输出为List(List(1,1,1),List(2,2),List(3,3,3))

另一个条件可能是当前元素应该大于prev元素。然后,如果输入为List(1,2,3,1,4,6,5,7,8),则输出为List(List(1,2,3), List(1,4,6), List(5,7,8))。如果该方法可以对Iterator起作用,那也是很好的。方法的typedef是

def method[A](lst:List[A], cond:(A,A)=>Boolean):List[List[A]]
def method[A](lst:Iterator[A], cond:(A,A)=>Boolean):Iterator[Iterator[A]]

3 个答案:

答案 0 :(得分:5)

您可以在递归函数中将slidingspan一起使用,以获得所需的效果。这种快速而肮脏的版本效率较低,但比其他选择更为简洁:

def method[A](lst: TraversableOnce[A], cond: (A, A) => Boolean): List[List[A]] = {
    val iterable = lst.toIterable
    iterable.headOption.toList.flatMap { head => 
        val (next, rest) = iterable.sliding(2).filter(_.size == 2).span(x => cond(x.head, x.last))
        (head :: next.toList.map(_.last)) :: method(rest.map(_.last), cond)
    }
}

如果您想懒洋洋地执行代码,可以返回Iterator[List[A]]而不是List[List[A]]

def method[A](lst: TraversableOnce[A], cond: (A, A) => Boolean): Iterator[List[A]] = {
    val iterable = lst.toIterable
    iterable.headOption.toIterator.flatMap { head => 
        val (next, rest) = iterable.sliding(2).filter(_.size == 2).span(x => cond(x.head, x.last))
        Iterator(head :: next.toList.map(_.last)) ++ method(rest.map(_.last), cond)
    }
}  

你可以验证这是懒惰的:

val x = (Iterator.range(0, 10) ++ Iterator.range(3, 5) ++ Iterator.range(1, 3)).map(x => { println(x); x })
val iter = method(x, (x: Int, y: Int) => x < y) //Only prints 0-9, and then 3!
iter.take(2).toList //Prints more
iter.toList //Prints the rest

通过返回Iterator[Iterator[A]]

,您可以让它变得更加懒散
def method[A](lst: TraversableOnce[A], cond: (A, A) => Boolean): Iterator[Iterator[A]] = {
    val iterable = lst.toIterable
    iterable.headOption.toIterator.flatMap { head => 
        val (next, rest) = iterable.sliding(2).filter(_.size == 2).span(x => cond(x.head, x.last))
        Iterator(Iterator(head) ++ next.toIterator.map(_.last)) ++ method(rest.map(_.last), cond)
    }
} 

作为一个相对不相关的旁注,当你有这个表格的通用参数时,你最好使用2个参数列表:

def method[A](lst: TraversableOnce[A])(cond: (A, A) => Boolean)

当你有这样的2个参数列表时,类型推断可以更聪明一些:

//No need to specify parameter types on the anonymous function now!
method(List(1, 3, 2, 3, 4, 1, 8, 1))((x, y) => x < y).toList
//You can now even use underscore anonymous function notation!
method(List(1, 4, 2, 3, 4, 1, 8))(_ < _)

答案 1 :(得分:0)

这与你要求的东西很接近(我相信)。唯一的问题是它总是为结果生成一个列表列表而不是基于输入类型:

  val iter = Iterator(1,1,2,2,2,3,3,3)
  val list = List(4,5,5,5,5,6,6)

  def same(a:Int,b:Int) = a == b
  def gt(a:Int, b:Int) = b > a

  println(groupByPred(iter, same))
  println(groupByPred(list, gt))

  def groupByPred[L <: TraversableOnce[T], T](trav:L, cond:(T,T) => Boolean):List[List[T]] = {
    val (ret, inner) = 
      trav.foldLeft((List.empty[List[T]], List.empty[T])){
        case ((acc, list), el) if list.isEmpty || cond(list.head, el) => (acc,el :: list)
        case ((acc, list), el)  => (list.reverse :: acc,el :: List.empty)
      }
    (inner.reverse :: ret).reverse
  }

如果您运行该代码,则输出应为以下内容:

List(List(1, 1), List(2, 2, 2), List(3, 3, 3))
List(List(4, 5), List(5), List(5), List(5, 6), List(6))

答案 2 :(得分:0)

试试这个。

将列表的头部作为列表列表的第一个元素的第一个元素。如果条件成立,则向第一个List添加内容。如果没有,则启动一个新的List,并将当前条目作为第一个元素。

内部列表和外部列表都以错误的顺序构造。因此,反转外部List的每个元素(使用map),然后反转外部列表。

  val xs = List(1, 1, 1, 2, 2, 3, 3, 3, 3)
  val ys = List(1, 2, 3, 1, 4, 6, 5, 7, 8)

  def method[A](lst: List[A], cond: (A, A) => Boolean): List[List[A]] = {
    lst.tail.foldLeft(List(List(lst.head))) { (acc, e) =>
      if (cond(acc.head.head, e))
        (e :: acc.head) :: acc.tail
      else List(e) :: acc
    }.map(_.reverse).reverse
  }

method(xs, { (a: Int, b: Int) => a == b })
//> res0: List[List[Int]] = List(List(1, 1, 1), List(2, 2), List(3, 3, 3, 3))
method(ys, { (a: Int, b: Int) => a < b })
//> res1: List[List[Int]] = List(List(1, 2, 3), List(1, 4, 6), List(5, 7, 8))

迭代器重载

def method[A](iter:Iterator[A], cond: (A, A) => Boolean): List[List[A]] = {
 val h = iter.next
   iter.foldLeft(List(List(h))) { (acc, e) =>
     if (cond(acc.head.head, e))
       (e :: acc.head) :: acc.tail
     else List(e) :: acc
   }.map(_.reverse).reverse
 }

method(xs.toIterator, { (a: Int, b: Int) => a == b })
//> res0: List[List[Int]] = List(List(1, 1, 1), List(2, 2), List(3, 3, 3, 3))
method(ys.toIterator, { (a: Int, b: Int) => a < b })
//> res1: List[List[Int]] = List(List(1, 2, 3), List(1, 4, 6), List(5, 7, 8))

更适用于Lists,Iterators和任何可以遍历的内容的通用版本(这里提供了一些针对@cmbaxter的提示):

def method[A, T <: TraversableOnce[A]](trav: T, cond: (A, A) => Boolean)
: List[List[A]] = {
    trav.foldLeft(List(List.empty[A])) { (acc, e) =>
      if (acc.head.isEmpty || !cond(acc.head.head, e)) List(e) :: acc
      else (e :: acc.head) :: acc.tail
    }.map(_.reverse).reverse
  }