私がこれを持っている場合:
def array = [1,2,3,4,5,6]
これ(または同様のこと)を可能にする組み込みのものはありますか?
array.split(2)
そして取得:
[[1,2],[3,4],[5,6]]
?
これを処理するためにgroovyに組み込まれているものは何もない(少なくとも2つ以上のパーティションの場合)というChrisに同意しますが、あなたの質問は彼とは異なる質問であると解釈しました。これがあなたが求めていると私が思うことをする実装です:
def partition(array, size) {
def partitions = []
int partitionCount = array.size() / size
partitionCount.times { partitionNumber ->
def start = partitionNumber * size
def end = start + size - 1
partitions << array[start..end]
}
if (array.size() % size) partitions << array[partitionCount * size..-1]
return partitions
}
def origList = [1, 2, 3, 4, 5, 6]
assert [[1], [2], [3], [4], [5], [6]] == partition(origList, 1)
assert [[1, 2], [3, 4], [5, 6]] == partition(origList, 2)
assert [[1, 2, 3], [4, 5, 6]] == partition(origList, 3)
assert [[1, 2, 3, 4], [5, 6]] == partition(origList, 4)
assert [[1, 2, 3, 4, 5], [6]] == partition(origList, 5)
assert [[1, 2, 3, 4, 5, 6]] == partition(origList, 6)
[〜#〜] edit [〜#〜]groovy 1.8.6以降、リストで collate メソッドを使用できます
def origList = [1, 2, 3, 4, 5, 6, 7, 8, 9]
assert [[1, 2, 3, 4], [5, 6, 7, 8], [9]] == origList.collate(4)
InjectとmetaClassesを使用する別のメソッド
List.metaClass.partition = { size ->
def rslt = delegate.inject( [ [] ] ) { ret, elem ->
( ret.last() << elem ).size() >= size ? ret << [] : ret
}
if( rslt.last()?.size() == 0 ) rslt.pop()
rslt
}
def origList = [1, 2, 3, 4, 5, 6]
assert [ [1], [2], [3], [4], [5], [6] ] == origList.partition(1)
assert [ [1, 2], [3, 4], [5, 6] ] == origList.partition(2)
assert [ [1, 2, 3], [4, 5, 6] ] == origList.partition(3)
assert [ [1, 2, 3, 4], [5, 6] ] == origList.partition(4)
assert [ [1, 2, 3, 4, 5], [6] ] == origList.partition(5)
assert [ [1, 2, 3, 4, 5, 6] ] == origList.partition(6)
assert [ ] == [ ].partition(2)
編集:空のリストの問題を修正しました
グルーヴィーな1.8.6をチェックしてください。リストに新しい照合方法があります。
def list = [1, 2, 3, 4]
assert list.collate(4) == [[1, 2, 3, 4]] // gets you everything
assert list.collate(2) == [[1, 2], [3, 4]] //splits evenly
assert list.collate(3) == [[1, 2, 3], [4]] // won't split evenly, remainder in last list.
詳細については、 Groovyリストのドキュメント を参照してください。残りを削除するなど、他のオプションを提供するパラメータが他にもいくつかあるためです。
それを行うための組み込みはありませんが、書くのは難しくありません。
def array = [1,2,3,4,5,6]
int mid = (int) (array.size() / 2)
def left = array[0..mid-1]
def right = array[mid..array.size()-1]
println left
println right
これは非常に古いことですが、リストを(残りの部分を含む)等しいパーティションに分割しようとしている人にとって、元の投稿に対するTimのコメントを見逃している場合、最新のグルーヴィーな方法は、リストオブジェクトのcollate()メソッドです。 Groovy1.8.6以降で利用可能です。
def array = [1, 2, 3, 4, 5, 6, 7]
assert [[1], [2], [3], [4], [5], [6], [7]] == array.collate(1, 1, true)
assert [[1, 2], [3, 4], [5, 6], [7]] == array.collate(2, 2, true)
assert [[1, 2, 3], [4, 5, 6], [7]] == array.collate(3, 3, true)
assert [[1, 2, 3, 4], [5, 6, 7]] == array.collate(4, 4, true)
assert [[1, 2, 3, 4, 5], [6, 7]] == array.collate(5, 5, true)
assert [[1, 2, 3, 4, 5, 6], [7]] == array.collate(6, 6, true)
assert [[1, 2, 3, 4, 5, 6, 7]] == array.collate(7, 7, true)
これは、Groovyの動的機能を使用してListクラスに分割メソッドを追加する代替バージョンであり、期待どおりの動作をします。
List.metaClass.split << { size ->
def result = []
def max = delegate.size() - 1
def regions = (0..max).step(size)
regions.each { start ->
end = Math.min(start + size - 1, max)
result << delegate[start..end]
}
return result
}
def original = [1, 2, 3, 4, 5, 6]
assert [[1, 2], [3, 4], [5, 6]] == original.split(2)
List.metaClass.split << { step ->
def result = [], max = delegate.size(), min = 0
while(min+step < max){
result.add delegate.subList(min,min+=step)
}
result.add delegate.subList(min, max)
result
}
この質問は古いですが、リストを同じサイズのリストに分割するために私が思いついたものをとにかく共有したいと思います。
list.collate
は素晴らしいですが、リストを均等に分割する必要があったため、うまくいきませんでした。
私がしていることはどこですか:
class PartitionCategory {
static evenlyPartitionWithCount(Collection self, int count) {
def indexes = 0..<self.size()
def sizes = indexes.countBy({ i -> i % count }).values()
def ranges = sizes.inject([]) { a, v -> a << (a ? (a.last().last() + 1)..(a.last().last() + v) : 0..<v) }
ranges.collect { r -> self[r] }
}
static evenlyPartitionWithSize(Collection self, int size) {
self.evenlyPartitionWithCount((int) Math.ceil(self.size() / size))
}
}
def array = [1, 2, 3, 4, 5, 6, 7]
use (PartitionCategory) {
assert [[1], [2], [3], [4], [5], [6], [7]] == array.evenlyPartitionWithSize(1)
assert [[1, 2], [3, 4], [5, 6], [7]] == array.evenlyPartitionWithSize(2)
assert [[1, 2, 3], [4, 5], [6, 7]] == array.evenlyPartitionWithSize(3)
assert [[1, 2, 3, 4], [5, 6, 7]] == array.evenlyPartitionWithSize(4)
assert [[1, 2, 3, 4], [5, 6, 7]] == array.evenlyPartitionWithSize(5)
assert [[1, 2, 3, 4], [5, 6, 7]] == array.evenlyPartitionWithSize(6)
assert [[1, 2, 3, 4, 5, 6, 7]] == array.evenlyPartitionWithSize(7)
}