Google News
logo
Algorithm - Interview Questions
Explain what is Quick Sort algorithm?
Quick Sort algorithm has the ability to sort list or queries quickly. It is based on the principle of partition exchange sort or Divide and conquer. This type of algorithm occupies less space, and it segregates the list into three main parts.
 
* Elements less than the Pivot element
* Pivot element
* Elements greater than the Pivot element
Advertisement