微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

swift – Stridable Protocol

我试图转换以下 Swift 2.3代码
//Example usage:
//(0 ..< 778).binarySearch { $0 < 145 } // 145
extension CollectionType where Index: RandomAccessIndexType {

    /// Finds such index N that predicate is true for all elements up to
    /// but not including the index N,and is false for all elements
    /// starting with index N.
    /// Behavior is undefined if there is no such N.
    func binarySearch(predicate: Generator.Element -> Bool)
        -> Index {
        var low = startIndex
        var high = endindex
        while low != high {
            let mid = low.advancedBy(low.distanceto(high) / 2)
            if predicate(self[mid]) {
                low = mid.advancedBy(1)
            } else {
                high = mid
            }
        }
        return low
    }
}

进入Swift 3如下:

//Example usage:
//(0 ..< 778).binarySearch { $0 < 145 } // 145
extension Collection where Index: Strideable {

    /// Finds such index N that predicate is true for all elements up to
    /// but not including the index N,and is false for all elements
    /// starting with index N.
    /// Behavior is undefined if there is no such N.
    func binarySearch(predicate: (Generator.Element) -> Bool)
        -> Index {
        var low = startIndex
        var high = endindex
        while low != high {
            let mid = low.advanced(by: low.distance(to: high) / 2)
            if predicate(self[mid]) {
                low = mid.advanced(to: 1)
            } else {
                high = mid
            }
        }
        return low
    }
}

错误

Binary operator ‘/’ cannot be applied to operands of type ‘self.Index.Stride’ and ‘Int’

抛出让mid = low.advanced(by:low.distance(to:high)/ 2)

有关如何修复它的任何帮助?

在Swift 3中,“集合移动他们的索引”,比较
关于Swift进化的 A New Model for Collections and Indices.特别是,您不要在索引上调用advancedBy(),
但是在集合上使用index()方法来推进索引.

所以你的方法将在Swift 3中实现

extension Collection {

    func binarySearch(predicate: (Iterator.Element) -> Bool) -> Index {
        var low = startIndex
        var high = endindex
        while low != high {
            let mid = index(low,offsetBy: distance(from: low,to: high)/2)
            if predicate(self[mid]) {
                low = index(after: mid)
            } else {
                high = mid
            }
        }
        return low
    }
}

不需要对索引类型进行任何限制.

原文地址:https://www.jb51.cc/swift/319562.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐