A sorting visualisation application written in C++.
- Can change the number of bars between 1000 - 100000
- Live update on the algorithm
- Can shuffle the bars
- Multiple sorting algorithms
- Visual indication of the number of comparisons and swaps
- Sorting algorithms runs on seperate threads from rendering.
This is a basic CMake project so you need to install cmake.
git clone --recursive https://github.com/burakssen/SortingVisualiser
cd SortingVisualiser
mkdir build
cd build
cmake ..
makeAfter this now run
./sortingon build directory.
There some project used for visualisation.
- ImGui used for ui buttons.
- rlImGui used for ease of integration between imgui and raylib.
- raylib used for rendering.
- @burakssen desing and development.
