码迷,mamicode.com
首页 > 编程语言 > 详细

二分法查找python的实现

时间:2018-01-13 16:55:27      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:blog   rap   def   查找   pos   value   enter   python   max   

def BinSearch(ls, value):
"""
使用二分法查找时列表内的元素必须是已经排好序的
:param ls:
:param value:
:return:
"""
minValue = 0
maxValue = len(ls) - 1
 
if value in ls:
while True:
center = int((minValue + maxValue) / 2)
if ls[center] > value:
maxValue = center - 1
 
elif ls[center] < value:
minValue = center + 1
 
elif ls[center] == value:
print("元素的索引是%s" % center)
break
 
else:
print("没有找到元素 %s" % value)
 
 
if __name__ == "__main__":
# datas = range(1, 1000)
datas = [88, 55, 22, 11, 99, 66, 77]
datas.sort()
print(datas)
BinSearch(datas, 88)
 

二分法查找python的实现

标签:blog   rap   def   查找   pos   value   enter   python   max   

原文地址:https://www.cnblogs.com/SunshineLittleCat/p/8279245.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!