《算法圖解》學習筆記1—二分查找、大O表示法

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