Scala将序列组合成三元组

时间:2013-02-24 05:10:49

标签: list scala map zip sequence

我有3个IndexedSequences,我想将它们组合如下:

indSeq1 = (a,b,c)
indSeq2 = (1,2,3)
indSeq3 = (!,@,#)

result:([a,1,!],[b,2,@],[c,3,#])

我使用了zipped但我得到了([a,b,c],[1,2,3],[!,@,#]) 我如何在scala中执行此操作,我希望输出也是IndexedSequence。

3 个答案:

答案 0 :(得分:2)

当我这样做时,这不是得到的:

scala> val indSeq1 = Seq('a', 'b', 'c')
indSeq1: Seq[Char] = List(a, b, c)

scala> val indSeq2 = Seq(1,2,3)
indSeq2: Seq[Int] = List(1, 2, 3)

scala> val indSeq3 = Seq('!', '@', '#')
indSeq3: Seq[Char] = List(!, @, #)

scala> (indSeq1, indSeq2, indSeq3).zipped
res30: scala.runtime.Tuple3Zipped[Char,Seq[Char],Int,Seq[Int],Char,Seq[Char]] = scala.runtime.Tuple3Zipped@9789aa5f

scala> res30.toSeq
res31: Seq[(Char, Int, Char)] = Stream((a,1,!), ?)

scala> res30.toList
res32: List[(Char, Int, Char)] = List((a,1,!), (b,2,@), (c,3,#))

scala> res30.toIndexedSeq
res33: scala.collection.immutable.IndexedSeq[(Char, Int, Char)] = Vector((a,1,!), (b,2,@), (c,3,#))

答案 1 :(得分:2)

只需在invert上使用方法Tuple3,如下所示:

scala> val s1 = IndexedSeq('a', 'b', 'c')
s1: IndexedSeq[Char] = Vector(a, b, c)

scala> val s2 = Seq(1, 2, 3)
s2: Seq[Int] = List(1, 2, 3)

scala> val s3 = Seq('!, '@, '#)
s3: Seq[Symbol] = List('!, '@, '#)

scala> (s1, s2, s3).invert
res0: IndexedSeq[(Char, Int, Symbol)] = Vector((a,1,'!), (b,2,'@), (c,3,'#))

答案 2 :(得分:0)

尝试压缩后运行转置。