https://github.com/ramonmeza/sortingvisualizer
A simple sorting visualizer built with SFML 2.4.2
https://github.com/ramonmeza/sortingvisualizer
Last synced: about 2 months ago
JSON representation
A simple sorting visualizer built with SFML 2.4.2
- Host: GitHub
- URL: https://github.com/ramonmeza/sortingvisualizer
- Owner: ramonmeza
- Created: 2017-05-05T11:16:21.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2024-10-19T16:32:48.000Z (7 months ago)
- Last Synced: 2025-01-24T08:11:31.823Z (4 months ago)
- Language: C++
- Size: 1.33 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sorting Visualizer
A small visualization of different sorting algorithms.
## Implemented Algorithms
### Bubble Sort

## Building
### Prerequisites
- SFML
- MSVC 2019 Build Tools\*\* Note: this is just what I used, you can use your own alternative, though the build commands will be different.
### MSVC 2019 Build Tools
This command will compile x64 version for Windows.
```sh
cl /EHsc /favor:INTEL64 /I".\include" /I"D:\code\lib\SFML-2.6.1\include" .\src\*.cpp /link /LIBPATH:"D:\code\lib\SFML-2.6.1\lib" sfml-audio.lib sfml-graphics.lib sfml-main.lib sfml-network.lib sfml-system.lib sfml-window.lib
```After compiling, ensure the DLLs for SFML are in included in your `PATH` when you run the compiled executable.