摘要: #!/usr/bin/pythondef binary_search(list, item): low = 0 high = len(list)-1 while low <= high: mid = (low + high)/2 print(mid) guess = list[mid] if gue 阅读全文
posted @ 2019-03-14 09:26 小武aj 阅读(168) 评论(0) 推荐(0) 编辑