Python中bisect模块用法,及实现方式

#bisect用法:
import bisect
bisect.bisect_left(t,x) #在T列表中查找x,若存在,返回x左侧位置
bisect.bisect_right(t,x)
bisect.insort_left(t,x) #在T列表中查找X,若存在,插入x左侧;
bisect.insort_right(t,x)


下面是其实现的方法,实际是二分法:

def binary_search(t,x):
    temp = t;
    temp.sort();
    low = 0;
    mid = 0;
    high = len(temp)-1;
    while low < high:
        mid = (low+high)/2;
        if xt[mid]:
            low = mid+1;
        else:
            return mid-1; #是否等价与bisect_left;


你可能感兴趣的:(Python)