Advertisements
Advertisements
Question
Write a program that takes as input a list of 10 integers and a key value and applies binary search to find whether the key is present in the list or not. If the key is present it should display the position of the key in the list otherwise it should print an appropriate message. Run the program for at least 3 different key values and note the results.
Solution
def binary_search(arr, low, high, x):
if high >= low:
mid = (high + low) // 2
if arr[mid] == x:
return mid
elif arr[mid] > x:
return binary_search(arr, low, mid - 1, x)
else:
return binary_search(arr, mid + 1, high, x)
else:
return -1
arr = [ 2, 3, 4, 10, 24, 34, 67, 99, 100, 133 ]
x = int(input("Enter the key to be searched: "))
result = binary_search(arr, 0, len(arr)-1, x)
if result != -1:
print("Element is present at position", str(result+1))
else:
print("Element is not present in array")
APPEARS IN
RELATED QUESTIONS
Which of the following is not a limitation of binary search algorithm?
Binary search algorithm cannot be applied to ______.
Binary search makes use of ______.
When we say that in binary search with every pass the search area is reduced by half means ______.
Determine the number of comparisons required in list [-4, 0, 2,7, 8, 17, 19] to search for - 4.
A modified binary search is used when one is ______.
For 9 elements in a list, binary search will start from element at ______.
Element in an unordered list cannot be searched using ______.
Binary search can be performed only on ordered lists.
Binary search algorithm changes the list.
Binary search works on the principle of divide and rule.
Binary list divides a list into half then sorts that half to conduct search.
Estimate the number of key comparisons required in binary search and linear search if we need to find the details of a person in a sorted database having 230 (1,073, 741, 824) records when details of the person being searched lie at the middle position in the database. What do you interpret from your findings?