Basic application built with OpenGL to explore differents sorting algorithms. It uses the FreeGlut API, which implements the OpenGL commands.
$ sudo apt-get install mesa-common-dev
$ sudo apt-get install freeglut3-dev
make
make run
- Use the 'r' key to regenerate the array
- Use the 'b' key to sort with bubble sort
- Use the 's' key to sort with selection sort
- Use the 'd' key to sort with double-selection sort
- Use the 'S' key to sort with c++ standart sort implementation