File tree Expand file tree Collapse file tree 3 files changed +25
-18257
lines changed Expand file tree Collapse file tree 3 files changed +25
-18257
lines changed 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
24
24
25
25
## Algorithms implemented
26
26
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
38
40
- Sieve of Eratosthenes
39
41
- Archimedes Spiral
40
42
- N Queen Backtracking
@@ -70,6 +72,15 @@ I took inspirations from the following sources for some of the segments.
70
72
- ` Recursion tree visualizer ` : [ Recursion Tree Visualizer] ( https://github.com/brpapa/recursion-tree-visualizer )
71
73
- ` Turing Machine ` : [ Tursi] ( https://github.com/schaetzc/tursi )
72
74
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
+
73
84
### Note to self:
74
85
75
86
To deploy recent changes to page
You can’t perform that action at this time.
0 commit comments