Quick Sort is a _______ sorting algorithm that follows the _______ approach.

  • Divide and conquer
  • Dynamic programming
  • Greedy
  • Linear
Quick Sort is a divide and conquer sorting algorithm that follows the divide-and-conquer approach. It recursively divides the array into subarrays until each subarray is of size 1 or 0, and then combines them in a sorted manner.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *