Skip to content

Files

Latest commit

 

History

History

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