简体   繁体   English

Swift相当于Ruby的“each_cons”

[英]Swift equivalent of Ruby's “each_cons”

Ruby 红宝石

Ruby has each_cons that can be used like this Ruby有each_cons可以像这样使用

class Pair
    def initialize(left, right)
        @left = left
        @right = right
    end
end
votes = ["a", "b", "c", "d"]
pairs = votes.each_cons(2).map { |vote| Pair.new(*vote) }
p pairs
# [#<Pair @left="a", @right="b">, #<Pair @left="b", @right="c">, #<Pair @left="c", @right="d">]

Swift 迅速

The same code in swift, but without the each_cons function swift中的代码相同,但没有each_cons函数

struct Pair {
    let left: String
    let right: String
}
let votes = ["a", "b", "c", "d"]
var pairs = [Pair]()
for i in 1..<votes.count {
    let left = votes[i-1]
    let right = votes[i]
    pairs.append(Pair(left: left, right: right))
}
print(pairs)
// [Pair(left: "a", right: "b"), Pair(left: "b", right: "c"), Pair(left: "c", right: "d")]

How can this swift code be made shorter or simpler? 如何将这些快速代码缩短或简化?

zip(votes, votes.dropFirst())

This produces a sequence of tuples. 这会产生一系列元组。

Example

struct Pair {
    let left: String
    let right: String
}
let votes = ["a", "b", "c", "d"]
let pairs = zip(votes, votes.dropFirst()).map {
    Pair(left: $0, right: $1)
}
print(pairs)
// [Pair(left: "a", right: "b"), Pair(left: "b", right: "c"), Pair(left: "c", right: "d")]

This is the general solution I came up with, but it seems sort of horribly inefficient. 这是我提出的一般解决方案,但它看起来有点非常低效。 To implement each_cons(n) , set my clump to n : 为了实现each_cons(n)我的设置clumpn

        let arr = [1,2,3,4,5,6,7,8]
        let clump = 2
        let cons : [[Int]] = arr.reduce([[Int]]()) {
            memo, cur in
            var memo = memo
            if memo.count == 0 {
                return [[cur]]
            }
            if memo.count < arr.count - clump + 1 {
                memo.append([])
            }
            return memo.map {
                if $0.count == clump {
                    return $0
                }
                var arr = $0
                arr.append(cur)
                return arr
            }
        }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM