数组 – Swift:二进制搜索标准数组?

前端之家收集整理的这篇文章主要介绍了数组 – Swift:二进制搜索标准数组?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个排序的数组,并想做二进制搜索.

所以我在问Swift图书馆中是否有可用的排序等等?还是有一个类型的独立版本可用?

当然我可以用自己写的,但是我想避免重新发明轮子.

here回答改进(通用)
func binarySearch<T:Comparable>(inputArr:Array<T>,searchItem: T)->Int?{
    var lowerIndex = 0;
    var upperIndex = inputArr.count - 1

    while (true) {
        var currentIndex = (lowerIndex + upperIndex)/2
        if(inputArr[currentIndex] == searchItem) {
            return currentIndex
        } else if (lowerIndex > upperIndex) {
            return nil
        } else {
            if (inputArr[currentIndex] > searchItem) {
                upperIndex = currentIndex - 1
            } else {
                lowerIndex = currentIndex + 1
            }
        }
    }
}

var myArray = [1,2,3,4,5,6,7,9,10];
if let searchIndex = binarySearch(myArray,5){
    println("Element found on index: \(searchIndex)");
}
原文链接:https://www.f2er.com/swift/318845.html

猜你在找的Swift相关文章