SlideShare une entreprise Scribd logo
1  sur  26
AD3251 - DATA STRUCTURES DESIGN
KGiSL Institute of Technology
2
Quick Sort
 Fastest known sorting algorithm in practice
 Average case: O(N log N)
 Worst case: O(N2)
But the worst case can be made exponentially unlikely.
 Another divide-and-conquer recursive algorithm, like merge sort.
3
Quick Sort: Main Idea
1. If the number of elements in S is 0 or 1, then return (base case).
2. Pick any element v in S (called the pivot).
3. Partition the elements in S except v into two disjoint groups:
1. S1 = {x S – {v} | x  v}
2. S2 = {x S – {v} | x  v}
4. Return {QuickSort(S1) + v + QuickSort(S2)}
4
Quick Sort: Example
5
Example of Quick Sort...
6
Issues To Consider
 How to pick the pivot?
Many methods (discussed later)
 How to partition?
Several methods exist.
The one we consider is known to give good results and to be easy and
efficient.
We discuss the partition strategy first.
7
Partitioning Strategy
 For now, assume that pivot = A[(left+right)/2].
 We want to partition array A[left .. right].
 First, get the pivot element out of the way by
swapping it with the last element (swap pivot and
A[right]).
 Let i start at the first element and j start at the next-to-
last element (i = left, j = right – 1)
pivot i j
5 7 4 6 3 12 19 5 7 4 6
3 12
19
swap
8
Partitioning Strategy
 Want to have
 A[k]  pivot, for k < i
 A[k]  pivot, for k > j
 When i < j
 Move i right, skipping over elements smaller than the pivot
 Move j left, skipping over elements greater than the pivot
 When both i and j have stopped
A[i]  pivot
A[j]  pivot  A[i] and A[j] should now be swapped
i j
5 7 4 6
3 12
19
i j
5 7 4 6
3 12
19
i j
 pivot  pivot
9
Partitioning Strategy (2)
 When i and j have stopped and i is to the left of j (thus
legal)
 Swap A[i] and A[j]
 The large element is pushed to the right and the small element
is pushed to the left
 After swapping
 A[i]  pivot
 A[j]  pivot
 Repeat the process until i and j cross
swap
i j
5 7 4 6
3 12
19
i j
5 3 4 6
7 12
19
10
Partitioning Strategy (3)
 When i and j have crossed
swap A[i] and pivot
 Result:
A[k]  pivot, for k < i
A[k]  pivot, for k > i
i j
5 3 4 6
7 12
19
i
j
5 3 4 6
7 12
19
i
j
5 3 4 6 7 12 19
swap A[i] and pivot
Break!
Picking the Pivot
There are several ways to pick a pivot.
Objective: Choose a pivot so that we will get 2 partitions
of (almost) equal size.
12
Picking the Pivot (2)
 Use the first element as pivot
if the input is random, ok.
if the input is presorted (or in reverse order)
all the elements go into S2 (or S1).
this happens consistently throughout the recursive
calls.
results in O(N2) behavior (we analyze this case later).
 Choose the pivot randomly
generally safe,
but random number generation can be expensive and
does not reduce the running time of the algorithm.
13
Picking the Pivot (3)
 Use the median of the array (ideal pivot)
The N/2 th largest element
Partitioning always cuts the array into roughly half
An optimal quick sort (O(N log N))
However, hard to find the exact median
 Median-of-three partitioning
eliminates the bad case for sorted input.
reduces the number of comparisons by 14%.
14
Median of Three Method
 Compare just three elements: the leftmost, rightmost and center
 Swap these elements if necessary so that
 A[left] = Smallest
 A[right] = Largest
 A[center] = Median of three
 Pick A[center] as the pivot.
 Swap A[center] and A[right – 1] so that the pivot is at the second last
position (why?)
15
Median of Three: Example
pivot
5 6 4
6
3 12 19
2 13 6
5 6 4 3 12 19
2 6 13
A[left] = 2, A[center] = 13,
A[right] = 6
Swap A[center] and A[right]
5 6 4 3 12 19
2 13
pivot
6
5 6 4 3 12
19
2 13
Choose A[center] as pivot
Swap pivot and A[right – 1]
We only need to partition A[ left + 1, …, right – 2 ]. Why?
Quick Sort Summary
 Recursive case: QuickSort( a, left, right )
pivot = median3( a, left, right );
Partition a[left … right] into a[left … i-1], i, a[i+1 … right];
QuickSort( a, left, i-1 );
QuickSort( a, i+1, right );
 Base case: when do we stop the recursion?
In theory, when left >= right.
In practice, …
17
Small Arrays
 For very small arrays, quick sort does not
perform as well as insertion sort
 Do not use quick sort recursively for small arrays
Use a sorting algorithm that is efficient for small
arrays, such as insertion sort.
 When using quick sort recursively, switch to
insertion sort when the sub-arrays have between
5 to 20 elements (10 is usually good).
saves about 15% in the running time.
avoids taking the median of three when the sub-array
has only 1 or 2 elements.
18
Quick Sort: Pseudo-code
For small arrays
Recursion
Choose pivot
Partitioning
19
Partitioning Part
 The partitioning code we just
saw works only if pivot is picked
as median-of-three.
 A[left]  pivot and A[right]  pivot
 Need to partition only
A[left + 1, …, right – 2]
 j will not run past the beginning
 because A[left]  pivot
 i will not run past the end
 because A[right-1] = pivot
Homework
 Assume the pivot is chosen as the middle element of an array:
pivot = a[(left+right)/2].
 Rewrite the partitioning code and the whole quick sort algorithm.
21
Quick Sort Faster Than Merge Sort
 Both quick sort and merge sort take O(N log N) in the
average case.
 But quick sort is faster in the average case:
The inner loop consists of an increment/decrement (by
1, which is fast), a test and a jump.
There is no extra juggling as in merge sort.
inner loop
22
Analysis
Assumptions:
 A random pivot (no median-of-three partitioning)
 No cutoff for small arrays ( to make it simple)
1. If the number of elements in S is 0 or 1, then return (base case).
2. Pick an element v in S (called the pivot).
3. Partition the elements in S except v into two disjoint groups:
1. S1 = {x S – {v} | x  v}
2. S2 = {x S – {v} | x  v}
4. Return {QuickSort(S1) + v + QuickSort(S2)}
23
Analysis (2)
 Running time
pivot selection: constant time, i.e. O(1)
partitioning: linear time, i.e. O(N)
running time of the two recursive calls
 T(N)= T(i) + T(N – i – 1) + cN
i: number of elements in S1
c is a constant
24
Worst-Case Scenario
 What will be the worst case?
The pivot is the smallest element, all the time
Partition is always unbalanced
25
Best-Case Scenario
 What will be the best case?
Partition is perfectly balanced.
Pivot is always in the middle (median of the array).
 T(N) = T(N/2) + T(N/2) + cN = 2T(N/2) + cN
 This recurrence is similar to the merge sort recurrence.
 The result is O(NlogN).
26
Average-Case Analysis
 Assume that each of the sizes for S1 is equally likely  has
probability 1/N.
 This assumption is valid for the pivoting and partitioning strategy
just discussed (but may not be for some others),
 On average, the running time is O(N log N).
 Proof: pp 272–273, Data Structures and Algorithm Analysis by M.
A. Weiss, 2nd edition

Contenu connexe

Similaire à Quick sort.pptx

10 algos de tri
10   algos de tri10   algos de tri
10 algos de tri
kosss420
 
Skiena algorithm 2007 lecture08 quicksort
Skiena algorithm 2007 lecture08 quicksortSkiena algorithm 2007 lecture08 quicksort
Skiena algorithm 2007 lecture08 quicksort
zukun
 

Similaire à Quick sort.pptx (20)

Introduction to Algorithms
Introduction to AlgorithmsIntroduction to Algorithms
Introduction to Algorithms
 
3.8 quick sort
3.8 quick sort3.8 quick sort
3.8 quick sort
 
Data Structure Sorting
Data Structure SortingData Structure Sorting
Data Structure Sorting
 
Lec35
Lec35Lec35
Lec35
 
CSE680-07QuickSort.pptx
CSE680-07QuickSort.pptxCSE680-07QuickSort.pptx
CSE680-07QuickSort.pptx
 
10 algos de tri
10   algos de tri10   algos de tri
10 algos de tri
 
Quick sort Algorithm Discussion And Analysis
Quick sort Algorithm Discussion And AnalysisQuick sort Algorithm Discussion And Analysis
Quick sort Algorithm Discussion And Analysis
 
Dsa – data structure and algorithms sorting
Dsa – data structure and algorithms  sortingDsa – data structure and algorithms  sorting
Dsa – data structure and algorithms sorting
 
Skiena algorithm 2007 lecture08 quicksort
Skiena algorithm 2007 lecture08 quicksortSkiena algorithm 2007 lecture08 quicksort
Skiena algorithm 2007 lecture08 quicksort
 
Sorting
SortingSorting
Sorting
 
quick_sort
quick_sortquick_sort
quick_sort
 
07 Analysis of Algorithms: Order Statistics
07 Analysis of Algorithms: Order Statistics07 Analysis of Algorithms: Order Statistics
07 Analysis of Algorithms: Order Statistics
 
Insert Sort & Merge Sort Using C Programming
Insert Sort & Merge Sort Using C ProgrammingInsert Sort & Merge Sort Using C Programming
Insert Sort & Merge Sort Using C Programming
 
5.4 randomized datastructures
5.4 randomized datastructures5.4 randomized datastructures
5.4 randomized datastructures
 
5.4 randomized datastructures
5.4 randomized datastructures5.4 randomized datastructures
5.4 randomized datastructures
 
DAA-Divide and Conquer methodology, DAA 2024
DAA-Divide and Conquer methodology, DAA 2024DAA-Divide and Conquer methodology, DAA 2024
DAA-Divide and Conquer methodology, DAA 2024
 
search_sort Search sortSearch sortSearch sortSearch sort
search_sort Search sortSearch sortSearch sortSearch sortsearch_sort Search sortSearch sortSearch sortSearch sort
search_sort Search sortSearch sortSearch sortSearch sort
 
Counting sort(Non Comparison Sort)
Counting sort(Non Comparison Sort)Counting sort(Non Comparison Sort)
Counting sort(Non Comparison Sort)
 
sorting.pptx
sorting.pptxsorting.pptx
sorting.pptx
 
14-sorting.ppt
14-sorting.ppt14-sorting.ppt
14-sorting.ppt
 

Dernier

怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
eeanqy
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
instagramfab782445
 
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion pills in Kuwait Cytotec pills in Kuwait
 
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
amitlee9823
 
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
nirzagarg
 
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
nirzagarg
 
Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...
Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...
Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...
gajnagarg
 
➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men 🔝Bokaro🔝 Escorts S...
➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men  🔝Bokaro🔝   Escorts S...➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men  🔝Bokaro🔝   Escorts S...
➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men 🔝Bokaro🔝 Escorts S...
amitlee9823
 
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
amitlee9823
 

Dernier (20)

WhatsApp Chat: 📞 8617697112 Call Girl Baran is experienced
WhatsApp Chat: 📞 8617697112 Call Girl Baran is experiencedWhatsApp Chat: 📞 8617697112 Call Girl Baran is experienced
WhatsApp Chat: 📞 8617697112 Call Girl Baran is experienced
 
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
 
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
 
Call Girls Jalgaon Just Call 8617370543Top Class Call Girl Service Available
Call Girls Jalgaon Just Call 8617370543Top Class Call Girl Service AvailableCall Girls Jalgaon Just Call 8617370543Top Class Call Girl Service Available
Call Girls Jalgaon Just Call 8617370543Top Class Call Girl Service Available
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
 
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
 
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
 
Sweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptxSweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptx
 
Sector 104, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 104, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 104, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 104, Noida Call girls :8448380779 Model Escorts | 100% verified
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
 
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
 
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
 
Q4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationQ4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentation
 
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
 
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
 
Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...
Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...
Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...
 
➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men 🔝Bokaro🔝 Escorts S...
➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men  🔝Bokaro🔝   Escorts S...➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men  🔝Bokaro🔝   Escorts S...
➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men 🔝Bokaro🔝 Escorts S...
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
 
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best ServiceHigh Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
 

Quick sort.pptx

  • 1. AD3251 - DATA STRUCTURES DESIGN KGiSL Institute of Technology
  • 2. 2 Quick Sort  Fastest known sorting algorithm in practice  Average case: O(N log N)  Worst case: O(N2) But the worst case can be made exponentially unlikely.  Another divide-and-conquer recursive algorithm, like merge sort.
  • 3. 3 Quick Sort: Main Idea 1. If the number of elements in S is 0 or 1, then return (base case). 2. Pick any element v in S (called the pivot). 3. Partition the elements in S except v into two disjoint groups: 1. S1 = {x S – {v} | x  v} 2. S2 = {x S – {v} | x  v} 4. Return {QuickSort(S1) + v + QuickSort(S2)}
  • 6. 6 Issues To Consider  How to pick the pivot? Many methods (discussed later)  How to partition? Several methods exist. The one we consider is known to give good results and to be easy and efficient. We discuss the partition strategy first.
  • 7. 7 Partitioning Strategy  For now, assume that pivot = A[(left+right)/2].  We want to partition array A[left .. right].  First, get the pivot element out of the way by swapping it with the last element (swap pivot and A[right]).  Let i start at the first element and j start at the next-to- last element (i = left, j = right – 1) pivot i j 5 7 4 6 3 12 19 5 7 4 6 3 12 19 swap
  • 8. 8 Partitioning Strategy  Want to have  A[k]  pivot, for k < i  A[k]  pivot, for k > j  When i < j  Move i right, skipping over elements smaller than the pivot  Move j left, skipping over elements greater than the pivot  When both i and j have stopped A[i]  pivot A[j]  pivot  A[i] and A[j] should now be swapped i j 5 7 4 6 3 12 19 i j 5 7 4 6 3 12 19 i j  pivot  pivot
  • 9. 9 Partitioning Strategy (2)  When i and j have stopped and i is to the left of j (thus legal)  Swap A[i] and A[j]  The large element is pushed to the right and the small element is pushed to the left  After swapping  A[i]  pivot  A[j]  pivot  Repeat the process until i and j cross swap i j 5 7 4 6 3 12 19 i j 5 3 4 6 7 12 19
  • 10. 10 Partitioning Strategy (3)  When i and j have crossed swap A[i] and pivot  Result: A[k]  pivot, for k < i A[k]  pivot, for k > i i j 5 3 4 6 7 12 19 i j 5 3 4 6 7 12 19 i j 5 3 4 6 7 12 19 swap A[i] and pivot Break!
  • 11. Picking the Pivot There are several ways to pick a pivot. Objective: Choose a pivot so that we will get 2 partitions of (almost) equal size.
  • 12. 12 Picking the Pivot (2)  Use the first element as pivot if the input is random, ok. if the input is presorted (or in reverse order) all the elements go into S2 (or S1). this happens consistently throughout the recursive calls. results in O(N2) behavior (we analyze this case later).  Choose the pivot randomly generally safe, but random number generation can be expensive and does not reduce the running time of the algorithm.
  • 13. 13 Picking the Pivot (3)  Use the median of the array (ideal pivot) The N/2 th largest element Partitioning always cuts the array into roughly half An optimal quick sort (O(N log N)) However, hard to find the exact median  Median-of-three partitioning eliminates the bad case for sorted input. reduces the number of comparisons by 14%.
  • 14. 14 Median of Three Method  Compare just three elements: the leftmost, rightmost and center  Swap these elements if necessary so that  A[left] = Smallest  A[right] = Largest  A[center] = Median of three  Pick A[center] as the pivot.  Swap A[center] and A[right – 1] so that the pivot is at the second last position (why?)
  • 15. 15 Median of Three: Example pivot 5 6 4 6 3 12 19 2 13 6 5 6 4 3 12 19 2 6 13 A[left] = 2, A[center] = 13, A[right] = 6 Swap A[center] and A[right] 5 6 4 3 12 19 2 13 pivot 6 5 6 4 3 12 19 2 13 Choose A[center] as pivot Swap pivot and A[right – 1] We only need to partition A[ left + 1, …, right – 2 ]. Why?
  • 16. Quick Sort Summary  Recursive case: QuickSort( a, left, right ) pivot = median3( a, left, right ); Partition a[left … right] into a[left … i-1], i, a[i+1 … right]; QuickSort( a, left, i-1 ); QuickSort( a, i+1, right );  Base case: when do we stop the recursion? In theory, when left >= right. In practice, …
  • 17. 17 Small Arrays  For very small arrays, quick sort does not perform as well as insertion sort  Do not use quick sort recursively for small arrays Use a sorting algorithm that is efficient for small arrays, such as insertion sort.  When using quick sort recursively, switch to insertion sort when the sub-arrays have between 5 to 20 elements (10 is usually good). saves about 15% in the running time. avoids taking the median of three when the sub-array has only 1 or 2 elements.
  • 18. 18 Quick Sort: Pseudo-code For small arrays Recursion Choose pivot Partitioning
  • 19. 19 Partitioning Part  The partitioning code we just saw works only if pivot is picked as median-of-three.  A[left]  pivot and A[right]  pivot  Need to partition only A[left + 1, …, right – 2]  j will not run past the beginning  because A[left]  pivot  i will not run past the end  because A[right-1] = pivot
  • 20. Homework  Assume the pivot is chosen as the middle element of an array: pivot = a[(left+right)/2].  Rewrite the partitioning code and the whole quick sort algorithm.
  • 21. 21 Quick Sort Faster Than Merge Sort  Both quick sort and merge sort take O(N log N) in the average case.  But quick sort is faster in the average case: The inner loop consists of an increment/decrement (by 1, which is fast), a test and a jump. There is no extra juggling as in merge sort. inner loop
  • 22. 22 Analysis Assumptions:  A random pivot (no median-of-three partitioning)  No cutoff for small arrays ( to make it simple) 1. If the number of elements in S is 0 or 1, then return (base case). 2. Pick an element v in S (called the pivot). 3. Partition the elements in S except v into two disjoint groups: 1. S1 = {x S – {v} | x  v} 2. S2 = {x S – {v} | x  v} 4. Return {QuickSort(S1) + v + QuickSort(S2)}
  • 23. 23 Analysis (2)  Running time pivot selection: constant time, i.e. O(1) partitioning: linear time, i.e. O(N) running time of the two recursive calls  T(N)= T(i) + T(N – i – 1) + cN i: number of elements in S1 c is a constant
  • 24. 24 Worst-Case Scenario  What will be the worst case? The pivot is the smallest element, all the time Partition is always unbalanced
  • 25. 25 Best-Case Scenario  What will be the best case? Partition is perfectly balanced. Pivot is always in the middle (median of the array).  T(N) = T(N/2) + T(N/2) + cN = 2T(N/2) + cN  This recurrence is similar to the merge sort recurrence.  The result is O(NlogN).
  • 26. 26 Average-Case Analysis  Assume that each of the sizes for S1 is equally likely  has probability 1/N.  This assumption is valid for the pivoting and partitioning strategy just discussed (but may not be for some others),  On average, the running time is O(N log N).  Proof: pp 272–273, Data Structures and Algorithm Analysis by M. A. Weiss, 2nd edition