|
1 | | -# Algo-Visualizer |
| 1 | + |
| 2 | + |
| 3 | +# Algorithm Visualizer |
| 4 | + |
| 5 | +Algorithm Visualizer is a Front-end Web Application to visualize various graph path-finding algorithms. |
| 6 | + |
| 7 | +Visit the web app by [clicking here 🚀](https://algo-visualizer-vvit.netlify.app/) |
| 8 | + |
| 9 | +## Algorithms |
| 10 | +* BFS |
| 11 | +* Bi-directional BFS |
| 12 | +* DFS |
| 13 | +* Greedy Best first search |
| 14 | +* A* search |
| 15 | +* Dijkstra's |
| 16 | + |
| 17 | +## DataStructures |
| 18 | +* Priority Queue |
| 19 | + |
| 20 | +## Tech Stack |
| 21 | +* React JS |
| 22 | +* BootStrap |
| 23 | + |
| 24 | +## How it Works |
| 25 | +* User can drag around a start and end node and set them in any place. |
| 26 | +* User can draw walls by clicking an dragging the mouse pointer. |
| 27 | +* User can optionally randomize the walls in the maze and add more walls by dragging the mouse. |
| 28 | +* User can add weights to blocks and can randomize the weights. |
| 29 | +* Users can then choose a speed of the visualization. |
| 30 | + |
| 31 | +## Screen Shot |
| 32 | + |
| 33 | + |
2 | 34 |
|
3 | | -" One of the most difficult topics that students feel is GRAPH THEORY. There are several complex graph algorithms like BFS, DFS, Dijkstra's, A* etc. Our goal is to make them easy by providing beautiful visualisations. " |
4 | 35 |
|
0 commit comments