Quick sort algorithm is an example of
2023
Quick sort algorithm is an example of
- A.
Greedy approach
- B.
Improved binary search
- C.
Dynamic Programming
- D.
Divide and conquer
Attempted by 328 students.
Show answer & explanation
Correct answer: D
Answer : D
Explanation
Quick sort divides the list using pivot and then sorts in recursive manner. It uses divide and conquer approach.