algo qsort pivot annotated

Upload: navediitr

Post on 08-Jan-2016

216 views

Category:

Documents


0 download

DESCRIPTION

Algorithm Quick Sort

TRANSCRIPT

Introduction to Programming

QuickSortChoosing a Good PivotDesign and Analysis of Algorithms I

1QuickSort: High-Level DescriptionThe Importance of the PivotTim RoughgardenNot enough information to answer questionSuppose we implement QuickSort so that ChoosePivot always selects the first element of the array. What is the running time of this algorithm on an input array that is already sorted?TemplatevertLeftWhite24Not enough information to answer questionSuppose we run QuickSort on some input, and, magically, every recursive call chooses the median element of its subarray as its pivot. Whats the running time in this case? TemplatevertLeftWhite25Random PivotsTim RoughgardenAverage Running Time of QuickSortTim Roughgarden