Quick sort has 3 types based on pivot selection.
- QuickSort : implemented with middle element selected as the pivot (standard)
- LPQuickSort : implemented with left element selected as the pivot
- RPQuickSort : implmemented with right element selected as the pivot
Sorting algorithm in this package uses threading.
- ParallelLPQuickSort (left pivot quick sort with threading)
- ParallelRPQuickSort (right pivot quick sort with threading)
to be updated..