Implementation of Batcher's sort using MPI.
Usage:
./batcher <input.dat> <output.dat>Generates a file with random sequence. Usage:
./generator <output.dat> <count of elements>Binary file reader. Usage:
./reader <input.dat>Tests that file is sorted. You can use that program with source file which contains unsorted array. The tester will check that input file contains a full copy of sorted source array and nothing else. Usage:
./tester <input.dat> [source.dat]Classic C qsort to compare with Batcher's sort. Usage:
./qsort <input.dat> <output.dat>