/quicksort

Parallel quicksort algorithms

Primary LanguageCBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

quicksort.c

Single threaded recursive implementation of quicksort.

quicksort-parallel.c

Processed based recursive impelmentation of quicksort.  Implemented like a fork
bomb.

quicksort-pool.c

Processed based recursive impelmentation of quicksort.  Ability to limit the
degree of parallelism.