in Algorithms edited by
13,524 views
43 votes
43 votes

Randomized quicksort is an extension of quicksort where the pivot is chosen randomly. What is the worst case complexity of sorting n numbers using Randomized quicksort?

  1. $O(n)$
  2. $O(n \log n)$
  3. $O(n^2)$
  4. $O(n!)$
in Algorithms edited by
13.5k views

4 Answers

48 votes
48 votes
Best answer

Correct Option: C
There are two cases, when Randomized Quick Sort will result into worst case time complexity of $O(n^{2})$

  1. When all elements are same in the input array, Partition algorithm will divide input array in two sub-arrays, one with $n-1$ elements and second with $0$ element. There is an assumption here that, we are using the same partition algorithm without any modification.
     
  2. If the randomised pivot selector happens to select the smallest or largest element N times in a row, we will get the worst possible  performance. Though the probability of this particular case is about $\frac{2^{n-1}}{n!}.$

PS: Option D is also correct here as $n^2 = O(n!)$ though $(C)$ is a better choice.

edited by

4 Comments

@samarpita Suppose we have $n$ elements.

First time: We have $n$ elements. We can either pick the smallest or the largest element (to get the worst case). Thus probability of picking the pivot = $2/n$

2nd Time: We now have $n-1$ elements (b/c we already picked one element as the pivot). Again we can pick either the smallest or the largest element. Thus probability of picking the pivot = $2/(n-1)$

3rd Time: Similarly $2/(n-2)$

(n-1)th Time: $2/(n-1)$ [Here probability will be $1$, because getting either largest or smallest out of two no. has prob of 1 for sure]

nth Time: Probability will be $1$ [obvious]

Thus total probability: $2*2*2$...[n-1 times] $/ (n*(n-1)*(n-2)* … *1)$ = $\frac{2^{n-1}}{n!}.$

2
2

@Abhrajyoti00

(n-1)th Time: 2/(n−1) [ Here probability will be 1, because getting either largest or smallest out of two no. has prob of 1 for sure]

nth Time: Probability will be 1 [obvious]

2 nd time pivot selection : 2/(n – 1)

3rd time: 2/(n – 2)

(n- 1) th time: 2/ (n – (n – 2)) = 2/2 = 1

n th time pivot selection is not required.In this case, maximum only (n-1) time pivot selection is required to sort the array.

Thus total probability: 2∗2∗2...[n-1 times] /(n∗(n−1)∗(n−2)∗…∗1) = (2^(n-1))/ n!

1
1

Yes @Argharupa Adhikary. Although it’s not wrong to take n th time probability. But it’s not reqd. as it is always the smallest/largest.

0
0
49 votes
49 votes
In worst case, we may pick pivot elements in the increasing order (input also given in sorted order) which will result in running time of O($n^{2}$)

Both the deterministic and randomized quicksort algorithms have the same best-case running times of O($nlogn$) and the same worst-case running times of O(n$^{2}$).The difference is that with the deterministic algorithm, a particular input can elicit that worst-case behavior.  With the randomized algorithm, however, no input can always elicit the worst-case behavior.  The reason it matters is that, depending on how partitioning is implemented, an input that is already sorted--or almost sorted--can elicit the worst-case behavior in deterministic quicksort.

source: Thomas Coremen

Ans. C
edited by

5 Comments

Yes. That is correct. O(n log n) is the EXPECTED number of comparisons when pivot is chosen randomly. 

14
14

But I have read that it gives O(n^2) only when pivot is selected as first or last element in an already sorted list, so i think here ans should be O(n logn) as they are talking about randomized quick sort here... pls tell me if i am correct or not?

0
0
Randomized quick sort picks the pivot randomly so in best case and avg case it gives O(nlogn) time complexity but stil in worst case there is a chance that it may select smallest element as pivot..so O(n^2) in worst case
1
1
@arjun sir i did not get the point...."expected num of comparision"
0
0
edited by

In Random Quick Sort

All these cases may come . ie '

In worst case, we may pick pivot elements in the increasing / decreasing order

Hence it is $O(n^{2})$ and $\Omega(n \log n)$

1
1
1 vote
1 vote
Randomized quicksort has expected time complexity as O(nLogn), but worst case time complexity remains same. In worst case the randomized function can pick the index of corner element every time.

Hence O(n^2).
–1 vote
–1 vote

The running time of Randomized QUICKSORT when all elements of array A have the same value will be equivalent to the worst case running of QUICKSORT since no matter what pivot is picked, QUICKSORT will have to go through all the values in A. And since all values are the same, each recursive call will lead to unbalanced partitioning.

Thus the recurrence will be:

T(n)=T(n−1)+Θ(n)

T(n)=Θ(n2)

Answer:

Related questions