Ask Question
20 November, 06:58

Which searching method requires that the list be sorted?

+5
Answers (1)
  1. 20 November, 07:02
    0
    Binary Search

    Explanation:

    Binary search is a search which we can apply on sorted list. This search compares the search element with the middle element of the list. If it is greater than the middle element then again we apply search on right list

    if it is less that the list then it will apply search on left list. This process happens recursively until you find the search element.

    In Worst and average Case Performance : 0 (nlogn)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Which searching method requires that the list be sorted? ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers