Friday, February 19, 2010

Serial and Parallel Bucket Sort

The bucket sort algorithm is inherently parallelization friendly. Here i have given the code for both the serial and parallel versions of the algorithm. both are in a eclipse project which can be found here.

Serial and Parallel Sample Sort

I constructed both serial and parallel algorithms of sample sort in java for the concurrent computing module that i took last semester. Just thought that i should share the code. Here is a link which contains an eclipse project with two classes, one for the serial version and one for he parallel version.