42

我有以下列表:

List(a, b, c, d, e)

如何从上面的列表中创建所有可能的组合?

我期待类似的东西:

a
ab
abc 
4

4 回答 4

93

或者你可以使用该subsets方法。不过,您必须先将列表转换为一组。

scala> List(1,2,3).toSet[Int].subsets.map(_.toList).toList
res9: List[List[Int]] = List(List(), List(1), List(2), List(3), List(1, 2), List(1, 3), List(2, 3), List(1, 2, 3))
于 2012-10-28T15:00:22.437 回答
35
def combine(in: List[Char]): Seq[String] = 
    for {
        len <- 1 to in.length
        combinations <- in combinations len
    } yield combinations.mkString 
于 2012-10-28T21:13:35.967 回答
9
def powerset[A](s: Set[A]) = s.foldLeft(Set(Set.empty[A])) { case (ss, el) => ss ++ ss.map(_ + el) }

听起来您需要Power set

于 2012-10-28T14:38:09.297 回答
9
val xs = List( 'a', 'b' , 'c' , 'd' , 'e' )
(1 to xs.length flatMap (x => xs.combinations(x))) map ( x => x.mkString(""))

这应该为您提供由空字符串连接的所有组合。

于 2012-10-28T15:47:11.520 回答