Skip to content

Files

Latest commit

e1ac3ad · Oct 7, 2021

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 2, 2021
Aug 2, 2021
Aug 3, 2021
Aug 3, 2021
Aug 3, 2021
Aug 3, 2021
Aug 3, 2021
Aug 3, 2021
Aug 3, 2021
Oct 7, 2021
Jun 5, 2021
Jun 20, 2021

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