Binary Search in PythonThis tutorial will learn how we can apply a binary search algorithm using Python to find an element’s index position in the given list. IntroductionA binary search is an algorithm to find a particular element in the list. Suppose we have a list of thousand elements, and we need to get an index position of a particular element. We can find the element’s index position very fast using the binary search algorithm. There are many searching algorithms but the binary search is most popular among them. The elements in the list must be sorted to apply the binary search algorithm. If elements are not sorted then sort them first. Let’s understand the concept of binary search. Concept of Binary SearchIn the binary search algorithm, we can find the element position using the following methods.
The divide and conquer approach technique is followed by the recursive method. In this method, a function is called itself again and again until it found an element in the list. A set of statements is repeated multiple times to find an element’s index position in the iterative method. The while loop is used for accomplish this task. Binary search is more effective than the linear search because we don’t need to search each list index. The list must be sorted to achieve the binary search algorithm. Let’s have a step by step implementation of binary search. We have a sorted list of elements, and we are looking for the index position of 45. [12, 24, 32, 39, 45, 50, 54] So, we are setting two pointers in our list. One pointer is used to denote the smaller value called low and the second pointer is used to denote the highest value called high. Next, we calculate the value of the middle element in the array. Now, we will compare the searched element to the mid index value. In this case, 32 is not equal to 45. So we need to do further comparison to find the element. If the number we are searching equal to the mid. Then return mid otherwise move to the further comparison. The number to be search is greater than the middle number, we compare the n with the middle element of the elements on the right side of mid and set low to low = mid + 1. Otherwise, compare the n with the middle element of the elements on the left side of mid and set high to high = mid – 1. Repeat until the number that we are searching for is found. Implement a Binary Search in PythonFirst, we implement a binary search with the iterative method. We will repeat a set of statements and iterate every item of the list. We will find the middle value until the search is complete. Let’s understand the following program of the iterative method. Python ImplementationOutput: Element is present at index 4 Explanation: In the above program –
Let’s understand the recursive method of binary search. Recursive Binary SearchThe recursion method can be used in the binary search. In this, we will define a recursive function that keeps calling itself until it meets the condition. Let’s understand the above program using the recursive function. Python ProgramOutput: Element is present at index 2 Explanation The above program is similar to the previous program. We declared a recursive function and its base condition. The condition is the lowest value is smaller or equal to the highest value.
In the last part, we have written our main program. It is the same as the previous program, but the only difference is that we have passed two parameters in the binary_search() function. This is because we can’t assign the initial values to the low, high and mid in the recursive function. Every time the recursive is called the value will be reset for those variables. That will give the wrong result. ComplexityThe complexity of the binary search algorithm is O(1) for the best case. This happen if the element that element we are looking find in the first comparison. The O(logn) is the worst and the average case complexity of the binary search. This depends upon the number of searches are conducted to find the element that we are looking for. ConclusionA binary search algorithm is the most efficient and fast way to search an element in the list. It skips the unnecessary comparison. As the name suggests, the search is divided into two parts. It focuses on the side of list, which is close to the number that we are searching. We have discussed both methods to find the index position of the given number. |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263593.html