File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,17 +24,19 @@ I have implemented a total of `24 algorithms` so far. And will try to add more l
2424
2525## Algorithms implemented
2626
27- - DFS
28- - BFS
29- - Dijkstra
30- - A star
31- - Recursive Maze Creation
32- - Bubble sort
33- - Selection sort
34- - Insertion sort
35- - Heap sort
36- - Merge sort
37- - Quick sort
27+ - Graph Search
28+ - DFS
29+ - BFS
30+ - Dijkstra
31+ - A star
32+ - Recursive Maze Creation
33+ - Sorting
34+ - Bubble sort
35+ - Selection sort
36+ - Insertion sort
37+ - Heap sort
38+ - Merge sort
39+ - Quick sort
3840- Sieve of Eratosthenes
3941- Archimedes Spiral
4042- N Queen Backtracking
@@ -70,6 +72,15 @@ I took inspirations from the following sources for some of the segments.
7072- ` Recursion tree visualizer ` : [ Recursion Tree Visualizer] ( https://github.com/brpapa/recursion-tree-visualizer )
7173- ` Turing Machine ` : [ Tursi] ( https://github.com/schaetzc/tursi )
7274
75+ ### Run locally
76+
77+ Make sure you have node installed in your system. Then run
78+ ``` bash
79+ npm i
80+ npm run start
81+ ```
82+ This will start the app in ` http://localhost:3000/AlgorithmVisualizer#/ `
83+
7384### Note to self:
7485
7586To deploy recent changes to page
You can’t perform that action at this time.
0 commit comments