| |
| | Dr. Dobb's | Algorithm Alley | July 22, 2001 (Site not responding. Last check: 2007-10-22) |
 | | The sort test runs five different sort functions: the array quicksort in Arrays.sort(), the linked-list quicksort in Collections.sort(), a new linked-list quicksort, a new linked-list merge sort, and a nonrecursive version of the linked-list merge sort. |
 | | Thus, it is not true that linked-list sorting must be slower than array sorting, nor is it true that the quicksort is the fastest comparison sort. |
 | | However, this conclusion is generally based on analyzing the merge sort's performance on an array, which is not the ideal data structure for the merge sort. |
| www.ddj.com /184410565 (3009 words) |
|