Which of the following sorting techniques is not preferred to sort a linked list?

Why Quick Sort preferred for Arrays and Merge Sort for Linked Lists?

Why is Quick Sort preferred for arrays?

Below are recursive and iterative implementations of Quick Sort and Merge Sort for arrays.

Recursive Quick Sort for array.
Iterative Quick Sort for arrays.
Recursive Merge Sort for arrays
Iterative Merge Sort for arrays

  • Quick Sort in its general form is an in-place sort [i.e. it doesn’t require any extra storage] whereas merge sort requires O[N] extra storage, N denoting the array size which may be quite expensive. Allocating and de-allocating the extra space used for merge sort increases the running time of the algorithm.
  • Comparing average complexity we find that both type of sorts have O[NlogN] average complexity but the constants differ. For arrays, merge sort loses due to the use of extra O[N] storage space.
  • Most practical implementations of Quick Sort use randomized version. The randomized version has expected time complexity of O[nLogn]. The worst case is possible in randomized version also, but worst case doesn’t occur for a particular pattern [like sorted array] and randomized Quick Sort works well in practice.
  • Quick Sort is also a cache friendly sorting algorithm as it has good locality of reference when used for arrays.
  • Quick Sort is also tail recursive, therefore tail call optimizations is done.

Why is Merge Sort preferred for Linked Lists?

Below are implementations of Quicksort and Mergesort for singly and doubly linked lists.



Quick Sort for Doubly Linked List
Quick Sort for Singly Linked List
Merge Sort for Singly Linked List
Merge Sort for Doubly Linked List

  • In case of linked lists the case is different mainly due to difference in memory allocation of arrays and linked lists. Unlike arrays, linked list nodes may not be adjacent in memory.
  • Unlike array, in linked list, we can insert items in the middle in O[1] extra space and O[1] time if we are given reference/pointer to the previous node. Therefore merge operation of merge sort can be implemented without extra space for linked lists.
  • In arrays, we can do random access as elements are continuous in memory. Let us say we have an integer [4-byte] array A and let the address of A[0] be x then to access A[i], we can directly access the memory at [x + i*4]. Unlike arrays, we can not do random access in linked list.
  • Quick Sort requires a lot of this kind of access. In linked list to access i’th index, we have to travel each and every node from the head to i’th node as we don’t have continuous block of memory. Therefore, the overhead increases for quick sort. Merge sort accesses data sequentially and the need of random access is low.

Related Articles:

  • Why quicksort is better than mergesort ?
  • Know Your Sorting Algorithm | Set 1 [Sorting Weapons used by Programming Languages]
  • Iterative Merge Sort
  • Iterative Quick Sort

Thanks to Sayan Mukhopadhyay for providing initial draft for above article. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Article Tags :

Sorting

Linked-List-Sorting

Merge Sort

Quick Sort

Practice Tags :

Sorting

Merge Sort

Read Full Article

Merge Sort for Linked Lists

  • Difficulty Level : Hard
  • Last Updated : 26 Nov, 2021

Merge sort is often preferred for sorting a linked list. 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.

Let the head be the first node of the linked list to be sorted and headRef be the pointer to head. Note that we need a reference to head in MergeSort[] as the below implementation changes next links to sort the linked lists [not data at the nodes], so the head node has to be changed if the data at the original head is not the smallest value in the linked list.

MergeSort[headRef] 1] If the head is NULL or there is only one element in the Linked List then return. 2] Else divide the linked list into two halves. FrontBackSplit[head, &a, &b]; /* a and b are two halves */ 3] Sort the two halves a and b. MergeSort[a]; MergeSort[b]; 4] Merge the sorted a and b [using SortedMerge[] discussed here] and update the head pointer using headRef. *headRef = SortedMerge[a, b];

Which sorting is best for doubly linked list?

What is the best sorting algorithm for a doubly linked list? Insertion sort and merge sort appears to the best due to the less overhead compared to the bubble/selection sort.

How do you quick sort using doubly linked list?

The idea is simple, we first find out pointer to the last node. Once we have a pointer to the last node, we can recursively sort the linked list using pointers to first and last nodes of a linked list, similar to the above recursive function where we pass indexes of first and last array elements.

Video liên quan

Bài mới nhất

Chủ Đề