Quick sort has 3 types based on pivot selection.
- QuickSort : implemented with middle element selected as the pivot (standard)
- LeftPivotQuickSort : implemented with left element selected as the pivot
- RightPivotQuickSort : implmemented with right element selected as the pivot
Sorting algorithm in this package uses threading.
- ParallelLeftPivotQuickSort (left pivot quick sort with threading)
- ParallelRightPivotQuickSort (right pivot quick sort with threading)
- PrarallelOddEvenMergeSort
- ParallelBitonicSort
to be updated..