Skip to content

Latest commit

 

History

History
74 lines (54 loc) · 1.64 KB

File metadata and controls

74 lines (54 loc) · 1.64 KB

Sorting Algorithm Visualizer

Description:

This application implements sorting algorithms, representing their state with colors and shape positions.

Preview:

Demo demo
Image image

Developer Notes:

# CONFIGURE
cmake --preset default

# BUILD DEBUG
cmake --build --preset debug
ctest --preset default --build-config debug

# BUILD RELEASE
cmake --build --preset release
ctest --preset default --build-config release
Tooling
  • SDL3
  • ImGui
  • Google Test
  • Vcpkg
  • CMake
Line Count
# GET LINE COUNT (REQUIRES CLOC TO BE INSTALLED)
cloc --include-lang=C++,"C/C++ Header",CMake --exclude-dir=build,vcpkg --out=line-count.txt .
Language Files Blank Comment Code
C++ 23 263 123 836
C/C++ Header 17 152 11 297
CMake 5 29 17 77
Total 45 444 151 1310