欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

二分查找的最大查找次数及Python实现

程序员文章站 2022-03-01 18:43:44
...

一、比较次数

1、如果最多比较x次,则区间长度为2^(x-1) ~ 2^x-1
2、对于区间长度y,最多比较logy+1次

二、python代码:

def binary_search(l1, item):
    low = 0
    high = len(l1) - 1
    while low <= high:
        mid = int((low + high) / 2)
        guess = l1[mid]
        if guess == item:
            return mid
        if guess > item:
            high = mid -1
        else:
            low = mid + 1
    return None


my_list = [1, 3, 5, 7, 9]
print(binary_search(my_list, -1))
相关标签: 算法