AlgoVis is an algorithm visualizer designed to simulate complex algorithms using different data structures. It could have potential use in aiding computer science student's in their comprehension in algorithms and datastructure courses.
User code is written in JavaScript which is interpreted by JS-Interpreter. All simulation and interpretation is handled on the client-side, making this app serverless.
Install the required the packages with yarn
Then run the webpack server with yarn run serv
You can think of AlgoVis as a "visual debugger", meaning you can write code and instantly observe its effects.
Several algorithms have already been implemented, try the "Examples" button on the top right.
- Lists
- Bubble Sort
- Insertion Sort
- Quick Sort
- Trees
- Depth-First Search
- Breadth-First Search
- Binary Search Trees
- Graphs
- Kruskal's minimum spanning tree
AlgoVis currently supports visualizing the following data structures:
- Lists
- Trees
- Queues
- Graphs
If you want to know more about programming in AlgoVis, check out API.md.