-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
157 lines (156 loc) · 5.66 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="path finding algorithms, depth first search, breadth first search."
/>
<meta
name="keywords"
content="breadth first search, breadth first algorithm, depth first search, depth first traversal, breadth first traversal, path finding, graph algorithms, graphs, algorithms, visualization, visual, graphs, graph traversal, traversal"
/>
<meta name="author" content="lumunge" />
<meta name="HandheldFriendly" content="True" />
<meta
property="og:site_name"
content="OpenGenus IQ: Computing Expertise & Legacy"
/>
<meta property="og:type" content="article" />
<meta property="og:title" content="BFS Visualization" />
<meta
property="og:description"
content="data structures and algorithms visualization, path finding algorithms, graph algorithms visualization, visual, graphs, graph traversal, traversal"
/>
<meta
property="og:url"
content="https://iq.opengenus.org/algorithm-visualization/"
/>
<meta
property="article:published_time"
content="2021-12-08T10:39:05.000Z"
/>
<meta property="article:modified_time" content="2021-12-08T19:39:45.000Z" />
<meta property="article:tag" content="Algorithms" />
<meta property="article:tag" content="Data Structures" />
<meta property="article:tag" content="Visualization" />
<meta
property="article:publisher"
content="https://www.facebook.com/opengenus"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Visualization" />
<meta
name="twitter:description"
content="A visualization of commong algorithms and algorithmkc problems."
/>
<meta
name="twitter:url"
content="https://iq.opengenus.org/algorithm-visualization/"
/>
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Erick Lumunge" />
<meta name="twitter:label2" content="Filed under" />
<meta
name="twitter:data2"
content="Visualization, Algorithms, Data Structures"
/>
<meta name="twitter:site" content="@OpenGenus" />
<link
rel="shortcut icon"
type="image/png"
href="./src/assets/images/fav1.ico"
/>
<link rel="stylesheet" href="./src/assets/css/index.min.css" />
<title>Algorithms Visualizer</title>
</head>
<body>
<div class="menu">
<div class="nav">
<div class="logo">
<a href="index.html">OpenGenus Visuals</a>
</div>
<div class="nav-links">
<a href="bfs-visual.html">bfs</a>
<a href="dfs-visual.html">dfs</a>
<a href="dijkstra-visual.html">dijkstra's</a>
<a href="bellman-ford-visual.html">bellman-ford's</a>
<a href="islands-visual.html">num islands</a>
<a href="max-Island-visual.html">max island</a>
<a
href="https://github.com/lumunge/Graph-Algorithms-Visualization/wiki"
>docs</a
>
</div>
</div>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
<main class="mainHome">
<div class="intro-text">
<div class="graph-image">
<img src="./src/assets/images/graph.png" alt="" />
</div>
<div class="text-inner">
<p>
We use graphs to represent connections between objects, that is, if
we have a set of objects related to each other, then can represent
them using graphs. The following are a few of the applications of
graphs and graph algorithms;
</p>
<ul>
<li>Find the shortest path from source to destination.</li>
<li>Find neighboring node in peer to peer network.</li>
<li>Booking and scheduling, spanning trees.</li>
<li>Testing is a graph is bipartite.</li>
<li>Detect cycles in a graph.</li>
<li>Topological sorting.</li>
<li>Solving puzzles and mazes.</li>
<li>Network routing protocols such as OSPF, RIP, BGP.</li>
<li>Search engines.</li>
<li>Satellite navigation systems.</li>
<li>Computer games.</li>
<li>Network mapping, cabling, power, telephone.</li>
</ul>
This is a visualization showcasing a few graph algorithms and a few
problems that can be solved using graphs and graph algorithms. For
more information, this
<a
target="_blank"
href="https://github.com/lumunge/Graph-Algorithms-Visualization/wiki"
>wiki</a
>
is helpful.
</div>
</div>
</main>
<footer>
<div class="copy">
<p>
OpenGenus IQ ©
<script>
document.write(/\d{4}/.exec(Date())[0]);
</script>
All rights reserved ™ [email:
<a href="mailto:team@opengenus.org">team@opengenus.org]</a>
</p>
</div>
<div class="links">
<span><a href="https://iq.opengenus.org/"> Top Posts </a></span>
<span
><a href="https://www.linkedin.com/company/opengenus">
LinkedIn</a
></span
>
<span><a href="https://twitter.com/OpenGenus"> Twitter</a></span>
</div>
</footer>
<!-- <script src="./dist/assets/ts/common.js"></script> -->
<script src="./dist/main.js"></script>
</body>
</html>