Question
Python programming. Binary search with recursive in it. Function must take in the the starting element, ending element, list and elements in the list. Function must return the position of the element. Position of element refers to the element "id" like 0,1,2 or 3,etc etc. Python programming. Binary search with recursive in it. Function must take in the the starting element, ending element, list and elements in the list. Function must return the position of the element. Position of element refers to the element "id" like 0,1,2 or 3,etc etc.
Explanation / Answer
Answer: def binary_search(list,n,x): #passes the list, the length of the list and the #number to search to a function binary_search start = 0 end = n - 1 while(start