Skip to content

Commit 3aa4ae4

Browse files
authored
Create README.md
1 parent 29ede2f commit 3aa4ae4

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed

README.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<div align="center"> <img align="center" alt="algorithm-visualizer" src="Logo1.png" height='150' width='150'>
2+
3+
<h1 align="center"> Algorithm-Visualizer</h1>
4+
5+
A web application, that lets you visualize complex algorithms. User's gets to working of algorithms, at different speeds, and different setups.
6+
7+
8+
9+
</div>
10+
<hr>
11+
12+
## Algorithms Supported
13+
14+
<ul>
15+
<li> Graph Algorihtms
16+
<details>
17+
<ul>
18+
<li> Dijkstra's path finding algorihtm. </li>
19+
<li> A-Star path finding algorihtm. </li>
20+
<li> Breadth First Search (BFS) traversal algorihtm. </li>
21+
<li> Depth First Search (DFS) traversal algorithm. </li>
22+
</ul>
23+
</details>
24+
</li>
25+
<li> Sorting Algorihtms
26+
<details>
27+
<ul>
28+
<li> Bubble Sort </li>
29+
<li> Selection Sort </li>
30+
<li> Insertion Sort </li>
31+
<li> Quick Sort </li>
32+
<li> Merge Sort </li>
33+
<li> Heap Sort </li>
34+
</ul>
35+
</details>
36+
</li>
37+
</ul>
38+
39+
40+
41+
42+
43+
44+
45+
46+
## Technology Stack Used
47+
<img src="https://img.shields.io/badge/html5%20-%23E34F26.svg?&style=for-the-badge&logo=html5&logoColor=white"/> <img src="https://img.shields.io/badge/css3%20-%231572B6.svg?&style=for-the-badge&logo=css3&logoColor=white"/> <img src="https://img.shields.io/badge/javascript%20-%23323330.svg?&style=for-the-badge&logo=javascript&logoColor=%23F7DF1E"/> <img src="https://img.shields.io/badge/node.js%20-%2343853D.svg?&style=for-the-badge&logo=node.js&logoColor=white"/> <img src="https://img.shields.io/badge/github%20-%23121011.svg?&style=for-the-badge&logo=github&logoColor=white"/>
48+
49+
- <strong> FrontEnd Design: </strong> HTML & CSS
50+
- <strong> Algorithms and animations: </strong> JavaScript
51+
- <strong> Server hosting: </strong> NodeJS
52+
- <strong> Web hosting: </strong> Netlify
53+
54+
55+
## Project Setup
56+
- Fork the repository and clone it to your local machine.
57+
```
58+
git clone https://github.com/harshita9104/algorithm-Visualiser
59+
```
60+
- Install the dependencies
61+
```
62+
npm install
63+
```
64+
- Run the server
65+
```
66+
npm start
67+
```
68+
69+
- Open the browser and go to the link
70+
```
71+
http://localhost:3000/
72+
```

0 commit comments

Comments
 (0)