-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinary_search_game.py
More file actions
42 lines (32 loc) · 1.3 KB
/
binary_search_game.py
File metadata and controls
42 lines (32 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Function to perform binary search on a sorted list
def binary_search(arr, target):
low = 0
high = len(arr) - 1
while low <= high:
mid = (low + high) // 2 # Find the middle index
# Check if the target is at the mid index
if arr[mid] == target:
return mid # Element found, return the index
# If target is greater than mid element, discard the left half
elif arr[mid] < target:
low = mid + 1
# If target is smaller than mid element, discard the right half
else:
high = mid - 1
return -1 # Element is not present in the list
# Function to take user input and find the target using binary search
def main():
# Example sorted array
arr = [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]
# Take the target element input from the user
target = int(input("Enter the number you want to search for: "))
# Perform binary search
result = binary_search(arr, target)
# Print the result
if result != -1:
print(f"Element {target} is present at index {result}.")
else:
print(f"Element {target} is not present in the list.")
# Run the main function
if __name__ == "__main__":
main()