File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ # tracers.java
2+
3+ > ` tracers.java ` is a visualization library for Java.
4+
5+ This repository is part of the project [ Algorithm Visualizer] ( https://github.com/algorithm-visualizer ) .
6+
7+ ## Installation
8+
9+ 1 . Download ` algorithm-visualizer.jar ` in the [ latest release] ( https://github.com/algorithm-visualizer/tracers.java/releases/latest ) .
10+
11+ 2 . Add it to the classpath.
12+
13+ ## Usage
14+
15+ ``` java
16+ import org.algorithm_visualizer.* ;
17+
18+ class Main {
19+ public static void main (String [] args ) {
20+ LogTracer logTracer = new LogTracer (" Scratch Paper" );
21+
22+ logTracer. print(" Visualize your own algorithm here!" );
23+ }
24+ }
25+ ```
26+
27+ Check out the [ API reference] ( https://github.com/algorithm-visualizer/algorithm-visualizer/wiki ) for more information.
28+
29+ ## Contributing
30+
31+ Check out the [ contributing guidelines] ( https://github.com/algorithm-visualizer/tracers.java/blob/master/CONTRIBUTING.md ) .
You can’t perform that action at this time.
0 commit comments