- 博客(1)
- 收藏
- 关注
原创 算法图解1.2二分法查找TypeError: list indices must be integers or slices, not float在Python3下解决办法
def binary_search(list,item): low = 0 high = len(list) -1#low和high用于跟踪要在其中查找的列表部分 while low <= high: mid = (low + high) // 2 #//表示整数除法 guess = list[mid] if guess == item: return mid if guess >
2022-04-17 11:35:28 216
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人