132

如何通过谓词将序列拆分为两个列表?

替代方案:我可以使用filterand filterNot,或编写自己的方法,但没有更好的更通用(内置)方法吗?

4

6 回答 6

211

通过使用partition方法:

scala> List(1,2,3,4).partition(x => x % 2 == 0)
res0: (List[Int], List[Int]) = (List(2, 4),List(1, 3))
于 2012-08-27T19:50:10.273 回答
146

很好,这partition正是您想要的——还有另一种方法也使用谓词将列表一分为二:span.

第一个,分区将所有“真实”元素放在一个列表中,其他元素放在第二个列表中。

span会将所有元素放在一个列表中,直到某个元素为“假”(就谓词而言)。从那时起,它将把元素放在第二个列表中。

scala> Seq(1,2,3,4).span(x => x % 2 == 0)
res0: (Seq[Int], Seq[Int]) = (List(),List(1, 2, 3, 4))
于 2012-08-28T03:20:08.350 回答
17

您可能想看看scalex.org - 它允许您通过签名在 scala 标准库中搜索函数。例如,键入以下内容:

List[A] => (A => Boolean) => (List[A], List[A])

你会看到partition

于 2012-08-27T23:30:16.650 回答
14

如果你需要一些额外的东西,你也可以使用 foldLeft。当分区没有削减它时,我只是写了一些这样的代码:

val list:List[Person] = /* get your list */
val (students,teachers) = 
  list.foldLeft(List.empty[Student],List.empty[Teacher]) {
    case ((acc1, acc2), p) => p match {
      case s:Student => (s :: acc1, acc2)
      case t:Teacher  => (acc1, t :: acc2)
    }
  }
于 2013-12-01T22:49:50.053 回答
1

我知道我可能会迟到,并且有更具体的答案,但你可以充分利用groupBy

val ret = List(1,2,3,4).groupBy(x => x % 2 == 0)

ret: scala.collection.immutable.Map[Boolean,List[Int]] = Map(false -> List(1, 3), true -> List(2, 4))

ret(true)
res3: List[Int] = List(2, 4)

ret(false)
res4: List[Int] = List(1, 3)

如果您需要将条件更改为非布尔值,这会使您的代码更具前瞻性。

于 2019-11-26T09:55:33.180 回答
0

如果要将列表拆分为 2 个以上的部分,并忽略边界,则可以使用类似这样的内容(如果需要搜索整数,请修改)

def split(list_in: List[String], search: String): List[List[String]] = {
  def split_helper(accum: List[List[String]], list_in2: List[String], search: String): List[List[String]] = {
    val (h1, h2) = list_in2.span({x: String => x!= search})
    val new_accum = accum :+ h1
    if (h2.contains(search)) {
      return split_helper(new_accum, h2.drop(1), search) 
    }
    else {
    return accum
    }
  }
  return split_helper(List(), list_in, search)
}

// TEST

// split(List("a", "b", "c", "d", "c", "a"), {x: String => x != "x"})
于 2014-10-15T23:07:15.920 回答