-3

我试图理解快速排序和合并排序。

维基百科上写的快速排序步骤是:

Quicksort is a divide and conquer algorithm. Quicksort first divides a large list into two smaller sub-lists: the low elements and the high elements. Quicksort can then recursively sort the sub-lists.
The steps are:
Pick an element, called a pivot, from the list.
Reorder the list so that all elements with values less than the pivot come before the pivot, while all elements with values greater than the pivot come after it (equal values can go either way). After this partitioning, the pivot is in its final position. This is called the partition operation.
Recursively apply the above steps to the sub-list of elements with smaller values and separately the sub-list of elements with greater values.

这里快速排序使用枢轴元素,而合并排序使用中间元素。

除此之外,它们有何不同?谢谢。

4

1 回答 1

0

似乎相关具有讽刺意味的是,通过谷歌搜索发现,快速排序和合并排序有何不同?

于 2013-09-09T12:46:57.370 回答