-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 に答える