wikipedia'daki karşılaştırması şöyle,
Quicksort, however, is considered by many to be the fastest general-purpose sort algorithm. On the plus side, merge sort is a stable sort, parallelizes better, and is more efficient at handling slow-to-access sequential media. Merge sort is often the best choice for sorting a linked list: in this situation it is relatively easy to implement a merge sort in such a way that it requires only Θ(1) extra space, and the slow random-access performance of a linked list makes some other algorithms (such as quicksort) perform poorly, and others (such as heapsort) completely impossible.
bizim öğrendiğimiz mergesort'un sıralı iki diziden sıralı bir dizi elde etmenin genel ismi olduğuydu. üstte wikipedia'da bir algoritma olduğu yazıyor.
bence üstte yazan özellikler içerisinde en önemlisi paralelliğe izin veriyor oluşu.
bir bakın,
en.wikipedia.org