Question: 3 . 2 . 1 : Recursive algorithm: search. String query _ item and a list of alphabetically sorted strings are read from input. Complete

3.2.1: Recursive algorithm: search. String query_item and a list of alphabetically sorted strings are read from input. Complete the search() function:
If query_item is found at index mid_index of the list, output query_item, followed by ' is found at index ' and the value of mid_index.
Else if range_size is 1, output query_item, followed by ' is not in the list'.
Otherwise, output query_item, followed by ' is not found at index ' and the value of mid_index.
def search(all_names, query_item, min_index, max_index):
range_size =(max_index - min_index)+1
mid_index =(min_index + max_index)//2
''' Your code goes here '''
query_item = input()
data_list = input().split()
search(data_list, query_item, 0, len(data_list)-1)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!