Skip to content

Files

Latest commit

53458fd · Jun 20, 2021

History

History

NOTE




QuickSort


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




ParallelSort


Sorting algorithm in this package uses threading.

  • ParallelLPQuickSort (left pivot quick sort with threading)
  • ParallelRPQuickSort (right pivot quick sort with threading)

to be updated..