我有大量的对象列表,我需要将它们分成一组两个元素用于UI propouse。
示例:
[0, 1, 2, 3, 4, 5, 6]
成为具有这四个数组的数组
[[0, 1], [2, 3], [4, 5], [6]]
分割阵列有很多种方法。但是,如果阵列很大,那么最有效(成本最低)的是什么。
答案 0 :(得分:4)
如果你正在寻找效率,你可以有一个方法可以懒惰地生成每个2个元素的数组,所以你一次只能在内存中存储2个元素:
public struct ChunkGen<G : GeneratorType> : GeneratorType {
private var g: G
private let n: Int
private var c: [G.Element]
public mutating func next() -> [G.Element]? {
var i = n
return g.next().map {
c = [$0]
while --i > 0, let next = g.next() { c.append(next) }
return c
}
}
private init(g: G, n: Int) {
self.g = g
self.n = n
self.c = []
self.c.reserveCapacity(n)
}
}
public struct ChunkSeq<S : SequenceType> : SequenceType {
private let seq: S
private let n: Int
public func generate() -> ChunkGen<S.Generator> {
return ChunkGen(g: seq.generate(), n: n)
}
}
public extension SequenceType {
func chunk(n: Int) -> ChunkSeq<Self> {
return ChunkSeq(seq: self, n: n)
}
}
var g = [1, 2, 3, 4, 5].chunk(2).generate()
g.next() // [1, 2]
g.next() // [3, 4]
g.next() // [5]
g.next() // nil
此方法适用于任何SequenceType
,而不仅仅是数组。
对于Swift 1,没有协议扩展,你有:
public struct ChunkGen<T> : GeneratorType {
private var (st, en): (Int, Int)
private let n: Int
private let c: [T]
public mutating func next() -> ArraySlice<T>? {
(st, en) = (en, en + n)
return st < c.endIndex ? c[st..<min(en, c.endIndex)] : nil
}
private init(c: [T], n: Int) {
self.c = c
self.n = n
self.st = 0 - n
self.en = 0
}
}
public struct ChunkSeq<T> : SequenceType {
private let c: [T]
private let n: Int
public func generate() -> ChunkGen<T> {
return ChunkGen(c: c, n: n)
}
}
func chunk<T>(ar: [T], #n: Int) -> ChunkSeq<T> {
return ChunkSeq(c: ar, n: n)
}
对于Swift 3:
public struct ChunkIterator<I: IteratorProtocol> : IteratorProtocol {
fileprivate var i: I
fileprivate let n: Int
public mutating func next() -> [I.Element]? {
guard let head = i.next() else { return nil }
var build = [head]
build.reserveCapacity(n)
for _ in (1..<n) {
guard let x = i.next() else { break }
build.append(x)
}
return build
}
}
public struct ChunkSeq<S: Sequence> : Sequence {
fileprivate let seq: S
fileprivate let n: Int
public func makeIterator() -> ChunkIterator<S.Iterator> {
return ChunkIterator(i: seq.makeIterator(), n: n)
}
}
public extension Sequence {
func chunk(_ n: Int) -> ChunkSeq<Self> {
return ChunkSeq(seq: self, n: n)
}
}
var g = [1, 2, 3, 4, 5].chunk(2).makeIterator()
g.next() // [1, 2]
g.next() // [3, 4]
g.next() // [5]
g.next() // nil
答案 1 :(得分:4)
如果你想要一个子数组,你可以使用split
函数使用一个闭包捕获一个状态变量来生成它,并在它遍历每个元素时递增它,只在每个第n个元素上进行分割。作为Sliceable
的扩展(仅限Swift 2.0,需要在1.2中成为自由函数):
extension Sliceable {
func splitEvery(n: Index.Distance) -> [SubSlice] {
var i: Index.Distance = 0
return split(self) { _ in ++i % n == 0 }
}
}
子公司非常有效,因为它们通常与原始可切片实体共享内部存储。因此,不会分配用于存储元素的新内存 - 仅用于跟踪子对象指向原始数组的指针。
请注意,这适用于任何可切片的内容,例如字符串:
"Hello, I must be going"
.characters
.splitEvery(3)
.map(String.init)
返回["He", "lo", " I", "mu", "t ", "e ", "oi", "g"]
。
如果你想懒洋洋地拆分数组(即生成一个只根据需要提供子序列的序列),你可以使用anyGenerator
来编写它:
extension Sliceable {
func lazilySplitEvery(n: Index.Distance) -> AnySequence<SubSlice> {
return AnySequence { () -> AnyGenerator<SubSlice> in
var i: Index = self.startIndex
return anyGenerator {
guard i != self.endIndex else { return nil }
let j = advance(i, n, self.endIndex)
let r = i..<j
i = j
return self[r]
}
}
}
}
for x in [1,2,3,4,5,6,7].lazilySplitEvery(3) {
print(x)
}
// prints [1, 2, 3]
// [4, 5, 6]
// [7]
答案 2 :(得分:3)
Swift 2 Gist
let arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
extension Array {
func splitBy(subSize: Int) -> [[Element]] {
return 0.stride(to: self.count, by: subSize).map { startIndex in
let endIndex = startIndex.advancedBy(subSize, limit: self.count)
return Array(self[startIndex ..< endIndex])
}
}
}
let chunks = arr.splitBy(5)
print(chunks) // [[1, 2, 3, 4, 5], [6, 7, 8, 9, 10], [11, 12]]
答案 3 :(得分:0)
您可以使用oisdk令人敬畏的SwiftSequence框架。 chunk
函数可以完全按照您的要求执行:
[1, 2, 3, 4, 5].chunk(2)
[[1, 2], [3, 4], [5]]
此外,序列的功能还有很多,你一定要查看它。
您可以查看一下chunk
here的实现(它使用生成器)
答案 4 :(得分:0)
也许不是最有效的解决方案,但却是最直接的解决方案:
func toPairs(numbers:[Int])->[[Int]]
{
var pairs:[[Int]]=[]
var pair:[Int]=[]
for var index=0;index<numbers.count;index++ {
pair.append(numbers[index])
if pair.count == 2 || index==numbers.count-1 {
pairs.append(pair)
pair=[]
}
}
return pairs
}
var numbers=[0,1,2,3,4,5]
var pairs=toPairs(numbers)
print(pairs)
我的笔记本电脑输出:
[[0, 1], [2, 3], [4, 5]]
Program ended with exit code: 0
答案 5 :(得分:0)
或者,您可以使用let res = a.reduce([[Int]]()) { (var acc: [[Int]], current: Int) in
if acc.last != nil && acc.last?.count < 2 {
var newLast = acc.last
newLast?.append(current)
acc.removeLast()
acc.append(newLast!)
} else {
acc.append([current])
}
return acc
}
,但这可能不是最有效的:
{{1}}
答案 6 :(得分:0)
到目前为止,我见过的最短解决方案(Swift 4)来自Gist:
extension Array {
func chunks(chunkSize: Int) -> [[Element]] {
return stride(from: 0, to: self.count, by: chunkSize).map {
Array(self[$0..<Swift.min($0 + chunkSize, self.count)])
}
}
}