Skip to content

algorithm-visualizer/tracers.cpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tracers.cpp

tracers.cpp is a visualization library for C++.

This repository is part of the project Algorithm Visualizer.

Dependencies

Installation

  1. Download and extract the source code in the latest release.

  2. Change directory to it and run:

mkdir build

cd build

cmake ..

make install

Usage

#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.

Contributing

Check out the contributing guidelines.