John Mavrick's Garden

Search IconIcon to open search

Last updated April 10, 2022

Status: Tags: #archivedCards/cmpt125/algorithms Links: Sorting Algorithms


Quick Sort

Principles

Choosing pivot ?

Parts

Process ?

Big O composition for good pivots ? Image from Gyazo|400

Parameters of qsort;; qsort(ar3, LENGTH, sizeof(int), cmp_ints);

Big O Notation

Best case ?

Worst case ?

Improvements

Improvement 1 ?

Improvement 2 ?

Improvement 3 ?

Improvement 4 ?

Types of partition and pivots

Lomuto partition scheme

Hoare scheme

Hoares ?

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
int partition(int A[], int l, int h) {

  int pivot = A[l]; //first elem
  int i = l; //set pointers
  int j = h;

  while (i<j) {

    do {
      i++;
    } while (A[i] <= pivot);

    do {
      j--;
    } while (A[j] > pivot);

    if (i<j)
      swap(&A[i], &A[j]);
  }

  swap(&A[l], &A[j]);
  return j;
}

void quickSort(int A[], int l, int h) {
  if (l<h) {
    int j = partition(A, l, h);
    quickSort(A, l, j);
    quickSort(A, j+1, h);
  }
}

Image from Gyazo

Time Complexity

Worst case cause and O() ?

Best case ?

Average case ? O(nlogn)

Space Complexity

Examples

What is the sorting process of

Input = [7,1,8,4,10,6,12,3], pivot = 7 ? Image from Gyazo

Choosing pivot ?

Code Implementation


Backlinks

1
list from Quick Sort AND !outgoing(Quick Sort)

References:

Created:: 2021-10-20 14:36


Interactive Graph