Get the most out of your questions with IDNLearn.com's extensive resources. Explore thousands of verified answers from experts and find the solutions you need, no matter the topic.

Martha has a large data list and wants to sort it quickly and efficiently. Which algorithm should Martha use

Sagot :

Answer:

quicksort

Explanation:

There are many types of asymptotically efficient sorting algorithms that can be used but one of the more commonly used for large data lists would be quicksort. This is a sorting algorithm that focuses on choosing a value from the list and working around that value in order to sort the data piece by piece. For larger data sets this method is widely used due to its speed and efficiency which is exactly what Martha needs in this scenario.