Skip to content

Files

Latest commit

3246fde · Jan 2, 2023

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Oct 12, 2021
Dec 30, 2022
Aug 2, 2021
Dec 28, 2022
Dec 28, 2022
Dec 28, 2022
Dec 28, 2022
Aug 3, 2021
Aug 3, 2021
Dec 30, 2022
Aug 3, 2021
Dec 30, 2022
Jan 1, 2023
Jan 2, 2023
Jan 2, 2023
Aug 3, 2021
Dec 26, 2021
Nov 2, 2021
Jun 5, 2021
Jan 2, 2023

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)

to be updated..