如何通过谓词将序列拆分为两个列表?
替代方案:我可以使用filter
and filterNot
,或编写自己的方法,但没有更好的更通用(内置)方法吗?
通过使用partition
方法:
scala> List(1,2,3,4).partition(x => x % 2 == 0)
res0: (List[Int], List[Int]) = (List(2, 4),List(1, 3))
您可能想看看scalex.org - 它允许您通过签名在 scala 标准库中搜索函数。例如,键入以下内容:
List[A] => (A => Boolean) => (List[A], List[A])
你会看到partition。
如果你需要一些额外的东西,你也可以使用 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)
}
}
我知道我可能会迟到,并且有更具体的答案,但你可以充分利用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)
如果您需要将条件更改为非布尔值,这会使您的代码更具前瞻性。
如果要将列表拆分为 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"})