Ask Question
12 August, 14:07

If you needed to sort an array with 10,000 items in the least amount of time, which sorting algorithm would you use?

+5
Answers (1)
  1. 12 August, 15:59
    0
    The answer is "Binary Search algorithm".

    Explanation:

    It is an accurate method, which is used to identify an object from the list of things, that has been sorted. It operates by splitting a section of the list.

    It includes the element twice into half, until after you have reduced all the potential targets to only one. This algorithm works with O (n * log (n)) efficiency, that's why it is used in the array sorting, it also consumes less time.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “If you needed to sort an array with 10,000 items in the least amount of time, which sorting algorithm would you use? ...” in 📙 Social Studies if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers