-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
41 lines (39 loc) · 2.53 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>A Visual Guide to Graph Traversal Algorithms by Workshape.io</title>
<!-- Icons -->
<link rel='shortcut icon' href='assets/favicon.ico' type='image/png' />
<meta name="description" content="Interactive visualisations help explain Depth First Search and Breadth First Search as well as algorithms based upon each approach. A very useful resource for learning by seeing.">
<meta name="keywords" content="Graph, Tree, Search, Computer Science, Interview Questions, Algorithms, DFS, BFS, Depth First Search, Breadth First Search, Strongly Connected Components, Biconnected Components, Bipartiteness, Shortest Path">
<link href='https://fonts.googleapis.com/css?family=Source+Code+Pro:400,300,500|Open+Sans:400,300italic,300,400italic,600|Raleway:400,200,100|Libre+Baskerville:400,400italic,700' rel='stylesheet' type='text/css'>
<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css' rel='stylesheet' type='text/css'>
<link href='style.css' rel='stylesheet' type='text/css'>
<!-- Meta -->
<meta charset='utf-8'>
<meta name='fragment' content='!'>
<meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
<!-- OpenGraph -->
<meta property='og:url' content='http://workshape.github.io/visual-graph-algorithms/'>
<meta property='og:type' content='website'>
<meta property='og:site_name' content='Graph Algorithms'>
<meta property='og:title' content='A Visual Guide to Graph Traversal Algorithms by Workshape.io'>
<meta property='og:description' content='Interactive visualisations help explain Depth First Search and Breadth First Search as well as algorithms based upon each approach. A very useful resource for learning by seeing.'>
<meta property='og:image' content='http://workshape.github.io/visual-graph-algorithms/assets/share-image.png'>
<meta property='og:image:width' content='1200'>
<meta property='og:image:height' content='630'>
</head>
<body>
<div id="start-app"></div>
<script src="bundle.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-46762199-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>