Skip to content

Latest commit

 

History

History
40 lines (18 loc) · 663 Bytes

File metadata and controls

40 lines (18 loc) · 663 Bytes

NOTE




QuickSort


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




ParallelSort


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..