indra-kc / DSA

A collection of essential Data Structures and Algorithms implemented in Python.
0 stars 6 forks source link

Quick Sort #46

Closed ShoomanKhatri closed 4 weeks ago

ShoomanKhatri commented 4 weeks ago

Problem: Select a pivot, partition the array around the pivot, and recursively apply the same to subarrays. Usage: Very fast in practice, especially for large lists; in-place and does not need extra space.

ShoomanKhatri commented 4 weeks ago

plz assign this to me.

ShoomanKhatri commented 4 weeks ago

completed