Binary Search(Recursive and Iterative)

We basically ignore half of the elements just after one comparison.

  1. Compare x with the middle element.

  2. If x matches with middle element, we return the mid index.

  3. Else If x is greater than the mid element, then x can only lie in right half subarray after the mid element. So we recur for right half.

  4. Else (x is smaller) recur for the left half.

 

Recursive:

# Python Program for recursive binary search.

  

# Returns index of x in arr if present, else -1

def binarySearch (arr, l, r, x):

  

    # Check base case

    if r >= l:

  

        mid = l + (r - l)/2

  

        # If element is present at the middle itself

        if arr[mid] == x:

            return mid

          

        # If element is smaller than mid, then it can only

        # be present in left subarray

        elif arr[mid] > x:

            return binarySearch(arr, l, mid-1, x)

  

        # Else the element can only be present in right subarray

        else:

            return binarySearch(arr, mid+1, r, x)

  

    else:

        # Element is not present in the array

        return -1

 

Iterative:

# Iterative Binary Search Function

# It returns location of x in given array arr if present,

# else returns -1

def binarySearch(arr, l, r, x):

  

    while l <= r:

  

        mid = l + (r - l)/2;

          

        # Check if x is present at mid

        if arr[mid] == x:

            return mid

  

        # If x is greater, ignore left half

        elif arr[mid] < x:

            l = mid + 1

  

        # If x is smaller, ignore right half

        else:

            r = mid - 1

      

    # If we reach here, then the element was not present

    return -1

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值