53.5k views
21 votes
Martha has a large data list and wants to sort it quickly and efficiently. Which algorithm should Martha use

User Scald
by
6.4k points

1 Answer

2 votes

Answer:

quicksort

Step-by-step 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.

User Dennis Martinez
by
6.5k points