Computer Science, asked by vershaduseja8050, 1 year ago

What is the best-case behavior of the algorithm? What is the worst-case behavior of the algorithm? How does the algorithm behave if the list of numbers is already sorted? What if the list of numbers is in reverse order?

Answers

Answered by gopanpavi2
0

Answer:

The answer depends on strategy for choosing pivot. In early versions of Quick Sort where leftmost (or rightmost) element is chosen as pivot, the worst occurs in following cases.

1) Array is already sorted in same order.

2) Array is already sorted in reverse order.

3) All elements are same (special case of case 1 and 2)

Explanation: Since these cases are very common use cases, the problem was easily solved by choosing either a random index for the pivot, choosing the middle index of the partition or (especially for longer partitions) choosing the median of the first, middle and last element of the partition for the pivot. With these modifications, the worst case of Quick sort has less chances to occur, but worst case can still occur if the input array is such that the maximum (or minimum) element is always chosen as pivot.

Similar questions