《圖解算法》第一章筆記與課後練習_二分查找算法

一、二分查找 def binary_search(list, item): # low 和 high 用於跟蹤要在其中查找的部分 low = 0 high = len(list) - 1 # 只要範圍沒有縮小到只有一個元素,就繼續循環 while low <= high: # 檢查中間的元素 mid = (low + high) // 2 # 這裏注意下,必
相關文章
相關標籤/搜索