tracers.cpp
is a visualization library for C++.
This repository is part of the project Algorithm Visualizer.
-
Download and extract the source code in the latest release.
-
Change directory to it and run:
mkdir build
cd build
cmake ..
make install
#include "algorithm-visualizer/LogTracer.h"
int main() {
LogTracer logTracer = LogTracer("Scratch Paper");
logTracer.print("Visualize your own algorithm here!");
return 0;
}
Check out the API reference for more information.