ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Quick Sort की worst-case time complexity क्या है?
Correct Answer: C — O(n²)
Quick Sort का worst case O(n²) तब होता है जब pivot हमेशा सबसे छोटा या बड़ा element हो (जैसे पहले से sorted array में पहला element pivot हो)। average case O(n log n) है।