2017-01-24 59 views

回答

2

你可以試試這個方法,找出最長列表的長度,然後收集要素同時通過循環指數每個子列表:

val maxLength = a.map(_.length).max 
// maxLength: Int = 3 

(0 until maxLength) map (i => a flatMap (List(i) collect _)) 
// res45: scala.collection.immutable.IndexedSeq[List[Int]] = 
//  Vector(List(1, 4, 7), List(2, 5, 8), List(3, 6)) 
2

應該使用GROUPBY法列表中的組元素。在你的例子中,你正在分組每三個元素。在我的解決方案,我現在用的是模運算符組的每個第三個元素的列表:

val a = (1 to 8).toList.groupBy(_ % 3).values.toList 
a: List[List[Int]] = List(List(2, 5, 8), List(1, 4, 7), List(3, 6)) 

如果要排序的結果(如在你的例子),然後在結尾處添加sortBy():

val a = (1 to 8).toList.groupBy(_ % 3).values.toList.sortBy(_(0)) 
a: List[List[Int]] = List(List(1, 4, 7), List(2, 5, 8), List(3, 6))