MCQOPTIONS
Saved Bookmarks
| 1. |
Which one of the following is the recurrence equation for the worst case time complexity of the Quicksort algorithm for sorting ( |
| A. | T(π) = 2 T(π/2) + πn |
| B. | T(π) = T(π β 1) + T(1) + πn |
| C. | T(π) = 2T(π β 1) + πn |
| D. | T(π) = T(π/2) + πn |
| AnswerΒ» C. T(π) = 2T(π β 1) + πn | |