下面是一個使用Python語言實現二分法查找的示例代碼:
def binary_search(arr, target):
left = 0
right = len(arr) - 1
while left <= right:
mid = (left + right) // 2
if arr[mid] == target:
return mid
elif arr[mid] < target:
left = mid + 1
else:
right = mid - 1
return -1
# 測試代碼
arr = [1, 2, 3, 4, 5, 6, 7, 8, 9]
target = 6
result = binary_search(arr, target)
if result != -1:
print(f'找到目標元素在數組中的索引位置: {result}')
else:
print('未找到目標元素')
運行以上代碼,輸出結果為:找到目標元素在數組中的索引位置: 5。說明目標元素6在數組中的索引位置為5。