Computer Science, asked by Manikbhatia3770, 9 months ago

त्वरित सॉर्ट के लिए एल्गोरिथ्म लिखिए।

Answers

Answered by realakv
0

Explanation:

Quick sort is one of the most famous sorting algorithms based on divide and conquers strategy which results in an O(n log n) complexity. So, the algorithm starts by picking a single item which is called pivot and moving all smaller items before it, while all greater elements in the later portion of the list.

Similar questions