0

我有 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。

4

3 回答 3

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,#))
于 2013-02-24T05:54:03.143 回答
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,'#))
于 2013-02-24T10:15:55.870 回答
0

压缩后尝试运行转置。

于 2013-02-24T05:16:26.827 回答