Amazon Prime




 

3 Posts tagged with SEARCHING

  • Algorithm
  • Searching
  • Searching Algorithms

    Searching Algorithms are used to determine whether given data exists within a data structure or not.

  • Algorithm
  • Searching
  • Linear Search
  • Linear Search Algorithm - Searching Algorithms

    In Linear Search, we traverse the array sequentially to and check if the element is matching with the given target element or not.

  • Algorithm
  • Searching
  • Binary Search
  • Binary Search Algorithm

    In Binary Search, we compare the target element with the middle element of the given sorted array and based on the outcome, we further divide the array into half and continue until we find the given element

     

     
    ...