Status: Tags: #archivedCards/cmpt125/algorithms Links: Sorting Algorithms
Quick Sort
Principles
- It is very efficient for arrays sets that are already substantially sorted
Choosing pivot ?
- way 1: pick first/last
- way 2: largest of 1st 2
- first, mid, last
- sort, pick median
- still o(1) and reduces worst case :DDD
Parts
- Pivot
- Selec element to be pivot
- Partitioning
- Swap elements such taht elements < pivot are in one partition, elements > pivot are in other
Process ?
- Given an array
- Choose an element, call it pivot
- Two pointers, index 1 and n-1
- Swaps elements at 2 pointers if both pointers are stopped
- Left stops if elem > pointer
- Right stops if elem < pointer
- As a result:
- All elements < pivot are to the left of pivot
- All elements >= pivot are to the right of pivot
- Swap pivot with the rightmost element smaller than pivot
- Recursively sort to left of pivot
- Recursively sort to right of pivot
Big O composition for good pivots
?
Parameters of qsort;; qsort(ar3, LENGTH, sizeof(int), cmp_ints);
Big O Notation
Best case ?
- nlogn
- has to divide $log_2n$ times before result is 1
- we partition $O(log_2n)$ times
- each partition causes up to n-1 comparisons
- has to divide $log_2n$ times before result is 1
Worst case ?
- Pivot is largest/smallest
- At most n-1 comparisons
- Partition n-1 times, results in O($n^2$)
Improvements
Improvement 1 ?
- Pivot selection using median-of-3 strat
Improvement 2 ?
- Stop using qs when size smal (n<10)
- use insertion instead
Improvement 3 ?
- Quick sort calls itself twice
- Second call:
- Call done as last operation/tail recursion
- Replace tail recursion with loop
- Second call:
Improvement 4 ?
- First call: call quick sort recursively using smaller partition
Types of partition and pivots
Lomuto partition scheme
Hoare scheme
Hoares ?
|
|
Time Complexity
Worst case cause and O() ?
- T(n) = O(n) +O(1) + T(n-2)
- Then T(n) = n+(n-2) + (n-4) + (n-6) + … + 2
- = O($n^2$)
-
- caused when pivot is largest element, or when all elems are same
Best case ?
- O(nlogn)
Average case ? O(nlogn)
Space Complexity
Examples
What is the sorting process of
Input = [7,1,8,4,10,6,12,3], pivot = 7
?
Choosing pivot ?
- One that splits array into two equal halves
Code Implementation
Backlinks
|
|
References:
Created:: 2021-10-20 14:36