Quick Sort in Go
QuickSort Divide and conquer algorithm After determining the pivot, the position of the pivot is confirmed and aligned Quicksort has many variations based on pivot. When comparing numbers, the pivot is the standard. The speed varies depending on the position of the pivot. There are left pivot, right pivot, middle pivot, and random pivot. O(n²) in the worst case Range, Criteria, Compare, Swap qui..
Go/Study record
2022. 3. 17. 18:44