Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 727 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 727 Bytes

tracers.java

tracers.java is a visualization library for Java.

This repository is part of the project Algorithm Visualizer.

Installation

  1. Download algorithm-visualizer.jar in the latest release.

  2. Add it to the classpath.

Usage

import org.algorithm_visualizer.*;

class Main {
    public static void main(String[] args) {
        LogTracer logTracer = new LogTracer("Scratch Paper");

        logTracer.print("Visualize your own algorithm here!");
    }
}

Check out the API reference for more information.