Quick Sort
Term side of the Card
Topic: Sorting Algorithms
Unit title: Quick Sort
Categories: Algorithm
Explanation side of the Card
Explanation: The sorting algorithm that selects a pivot element and partitions elements into two groups. Recursively sorts each partition, achieving average O(n log n) complexity.