×

Quick Sort

Quicksort is a sorting algorithm that uses a divide-and-conquer strategy.

  1. A pivot element is used to divide an array into subarrays (element selected from the array).  The pivot element should be positioned so that elements less than pivot are kept on the left side of the pivot and elements greater than pivot are kept on the right side of the pivot when dividing the array.
  2. The same method is used to divide the left and right subarrays. This process is repeated until each subarray has only one element.
  3. The elements have already been sorted at this point. The elements are finally able to produce a sorted array.

The Quicksort Algorithm Steps

1. Choose the Pivot Element.

Quicksort can be done in a variety of ways, with the pivot element being chosen from a variety of positions. The rightmost element of the array will be used as the pivot element in this case.

Quick Sort

2. Arrange the Array in a new order.

The array's elements are now rearranged so that elements smaller than the pivot are on the left and elements greater than the pivot are on the right.

Quick Sort

As an example, here's how we rearrange the array:

  • At the pivot element, a pointer is fixed. Beginning with the first index, the pivot element is compared to the elements.
Quick Sort
  • A second pointer is set for the element if it is larger than the pivot element.
Quick Sort
  • The pivot is now being compared to other elements. If a smaller element than the pivot element is found, the smaller element is swapped with the larger element discovered earlier.
Quick Sort
  • The process is repeated to set the second pointer to the next greater element. Also, replace it with a smaller element.
Quick Sort
  • The procedure continues until the second-to-last element has been reached.
Quick Sort
  • The pivot element is then replaced with the second pointer.
Quick Sort

3. Separate Subarrays

Pivot elements are chosen separately for the left and right sub-parts. Step 2 is then repeated.

Quick Sort

The subarrays are subdivided until each subarray consists of only one element. The array is already sorted at this point.

Algorithm of Quick Sorting

In order to sort an array of n elements in increasing order, use the following commands:


quickSort(array, leftmostIndex, rightmostIndex)
  if (leftmostIndex < rightmostIndex)
    pivotIndex <- partition(array,leftmostIndex, rightmostIndex)
    quickSort(array, leftmostIndex, pivotIndex - 1)
    quickSort(array, pivotIndex, rightmostIndex)


partition(array, leftmostIndex, rightmostIndex)
  set rightmostIndex as pivotIndex
  storeIndex <- leftmostIndex - 1
  for i <- leftmostIndex + 1 to rightmostIndex
  if element[i] < pivotElement
    swap element[i] and element[storeIndex]
    storeIndex++
  swap pivotElement and element[storeIndex+1]
return storeIndex + 1


The Quicksort Algorithm is depicted visually.

The illustrations below will help you understand how the quicksort algorithm works.

Quick Sort
Quick Sort

Code for Quick Sort in C

// Quick sort in C


#include <stdio.h>


// function to swap elements
void swap(int *a, int *b) {
  int t = *a;
  *a = *b;
  *b = t;
}


// function to find the partition position
int partition(int arr[], int low, int high) {
  
  // select the rightmost element as pivot
  int pivot = arr[high];
  
  // pointer for greater element
  int i = (low - 1);


  // traverse each element of the arr
  // compare them with the pivot
  for (int j = low; j < high; j++) {
    if (arr[j] <= pivot) {
        
      // if element smaller than pivot is found
      // swap it with the greater element pointed by i
      i++;
      
      // swap element at i with element at j
      swap(&arr[i], &arr[j]);
    }
  }


  // swap the pivot element with the greater element at i
  swap(&arr[i + 1], &arr[high]);
  
  // return the partition point
  return (i + 1);
}


void quickSort(int arr[], int low, int high) {
  if (low < high) {
    
    // find the pivot element such that
    // elements smaller than pivot are on left of pivot
    // elements greater than pivot are on right of pivot
    int pi = partition(arr, low, high);
    
    // recursive call on the left of pivot
    quickSort(arr, low, pi - 1);
    
    // recursive call on the right of pivot
    quickSort(arr, pi + 1, high);
  }
}


// function to print arr elements
void printArr(int arr[], int size) {
  for (int i = 0; i < size; ++i) {
    printf("%d  ", arr[i]);
  }
  printf("\n");
}


// main function
int main() {
  int arr[] = {8, 7, 2, 1, 0, 9, 6};
  
  int n = sizeof(arr) / sizeof(arr[0]);
  
  printf("Unsorted Array\n");
  printArr(arr, n);
  
  // perform quicksort on arr
  quickSort(arr, 0, n - 1);
  
  printf("Sorted array in ascending order: \n");
  printArr(arr, n);
}

The following output should be generated by this programme:

Output

Array Sorted in Ascending Order:
-12 -9 0 17 46

Complexity for Quick Sort

Time Complexity
Best CaseO(n log n)
Worst CaseO(n2)
AverageO(n log n)
Space ComplexityO(log n)
StabilityNo

Complexities of Time

  • Complexity in the worst-case scenario: O (n2)

When the pivot element chosen is either the greatest or the smallest, this occurs.

As a result of this condition, the pivot element ends up at the very end of the sorted array. One sub-array is always empty, while the other has n - 1 elements. As a result, quicksort is only applied to this sub-array.

For scattered pivots, however, the quicksort algorithm performs better.

  • Complexity in the Best-Case Scenario: O (n log n)

It happens when the pivot element is always in the middle or close to the middle.

  • Case Complexity on the Average: O (n log n)

It occurs when none of the above conditions are met.

Complexity of Space

Quick sort has a space complexity O (log n).

Applications for Quick Sorting

When the Quicksort algorithm is used,

  • Recursion is supported by the programming language.
  • It is important to consider the complexity of time.
  • It is important to consider the complexity of space.

Related Topics

Boruvkas algorithm

This algorithm is used for finding minimum spanning tree from a weighted graph. Like prim’s and kruskal’s algorithm it is also a greedy algorithm. Note:What is the minimum spanning tree?We know...

4 minutes read.

Breadth First Search

Breadth First Search Breadth first search is a graph traversing algorithm. In this, we start traversing from the source node or any selected node and traverse the graph layer by layer....

6 minutes read.

Types of Linked list

Single linked list  A single linked list is a linked list in which all nodes are connected with each other in sequence. Each node of a singly linked list has two...

7 minutes read.

Data structure: Infix to Prefix Conversion

Infix to Prefix Conversion In present time, we use the infix expression in our daily life but the computers are not able to understand this format because they need to keep...

4 minutes read.

Insertion in B+ Tree

We will learn how to insert a node in the B+ tree and what are the different properties we are going to follow. Except for the root node, every node should...

5 minutes read.

Cocktail Sort

C Program executes cocktail sort. Combo sort is a somewhat straightforward arranging calculation initially planned by Wlodzimierz Dobosiewicz and Artur Borowy in 1980, later rediscovered by Stephen Lacey and Richard Box...

5 minutes read.

Bubble Sort vs Quick Sort

In this article, we are going to compare two sorting techniques, Bubble sort and Quick Sort. In starting, we will first discuss the idea of sorting an array using bubble...

7 minutes read.

Singly Linked list

Singly Linked list A singly linked list is a kind of linked list which is unidirectional. If we talk about singly linked list, then we can say it can be traversed...

3 minutes read.

Radix Sort

Radix Sort: The radix sort is a non-comparative integer sorting algorithm that sorts the elements by grouping the individual digits of the same location. It shares the same significant position...

4 minutes read.

Berkley’s Algorithm

Berkley’s Algorithm is mainly used in clock synchronization system. It is used in distributed systems. To implement this algorithm, we have to think that the network has no accurate time...

4 minutes read.

Bookshop management system using file handling in C++

We see different software in every hospitals or library to manage their database. It is very important to store organization’s data. So we use this software. Now we are going...

5 minutes read.

Adding one to the number represented an array of digits

You have given one array, which consists of values which represent the different digits of a number. You have to add 1 to this number and store the result in...

3 minutes read.

DFS (Depth-first search) Algorithm: Data Structure

What is DFS (Depth-first search)? The depth first search is a graph traversal algorithm. The idea behind this algorithm is backtracking and it is a kind of recursive algorithm. In the...

3 minutes read.

Optimal binary search tree in DSA

Implementation // A simple way of the recursive implementation of the optimal search that we will perform on the binary tree.   #include <bits/stdc++.h> using namespace std; // we have to create a basic utility...

8 minutes read.

Linear vs Binary Search: Data Structure

Difference Between Linear and Binary Search What is Linear Search? A linear search also referred as a sequential search. It is a way to find an element within a list and it...

3 minutes read.

Count pairs from two linked lists whose sum is equal to a given value

Count pairs from two linked lists whose sum is equal to a given value In this problem, we have given two linked lists of size n1 and n2 with distinct elements...

4 minutes read.

2-3 Trees and Basic Operations on them

2-3 Trees, like any other AVL trees or B-trees, are just a type of Height Balanced Tree. 2-3 Trees are the B-trees of order 3. Like every other B-tree, the...

4 minutes read.

Minimum Spanning Tree

Before getting to know about the minimum spanning tree, we should first discuss about what is a spanning tree. A spanning tree is basically a sub or minimized graph that...

7 minutes read.

Bin Packing Problem (How to minimize the number of used Bins)

You have been given an array. The values of the array represent the size of n different items. You have been also given some bins. You have to store the...

3 minutes read.

Find the fractional (n/kth) node in the linked list

Find the fractional (n/kth) node in the linked list In this problem, we have given a singly linked list and a number k. Here we need to find the (n/k)th element...

2 minutes read.