forked from gcallah/algorithms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
141 lines (128 loc) · 4.37 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
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css"/>
<title>
Design and Analysis of Algorithms
</title>
</head>
<body>
<div style="text-align:center">
<p>
<img
src="https://upload.wikimedia.org/wikipedia/commons/d/d6/Finite_subdivision_of_a_radial_link.png"
height="160" width="160"><img
src="https://upload.wikimedia.org/wikipedia/commons/d/d6/Finite_subdivision_of_a_radial_link.png"
height="160" width="160"><img
src="https://upload.wikimedia.org/wikipedia/commons/d/d6/Finite_subdivision_of_a_radial_link.png"
height="160" width="160"><img
src="https://upload.wikimedia.org/wikipedia/commons/d/d6/Finite_subdivision_of_a_radial_link.png"
height="160" width="160"><img
src="https://upload.wikimedia.org/wikipedia/commons/d/d6/Finite_subdivision_of_a_radial_link.png"
height="160" width="160">
</p>
</div>
<h1>
Design and Analysis of Algorithms
</h1>
<div style="text-align:center">
<p>
"The best programs are written so that computing
machines can perform them quickly and so that<br>
human beings can understand them clearly. A
programmer is ideally an essayist who works with<br>
traditional aesthetic and literary forms as well
as mathematical concepts, to communicate the way<br>
that an algorithm works and to convince a reader
that the results will be correct." -- Donald Knuth
<br>
</p>
<h2>
Topics
</h2>
<hr>
<h3>
<a href="Introduction.html">
Introduction
</a>
</h3>
<h3>
<a href="Background.html">
A Review of Background Material
</a>
</h3>
<h3>
<a href="Dictionaries.html">
Dictionaries and Hashing
</a>
</h3>
<h3>
<a href="Rand.html">
Random Algorithms
</a>
</h3>
<h4>
<a href="Probability.html">
Some Basic Probability
</a>
</h4>
<h3>
<a href="BinarySearchTrees.html">
Binary Search Trees
</a>
</h3>
<h3>
<a href="DivideConquerI.html">
Divide-and-Conquer Algorithms
</a>
</h3>
<h3>
<a href="Graphs.html">
Graphs
</a>
</h3>
<h3>
<a
href="DynamicProgramming.html">
Dynamic Programming
</a>
</h3>
<h3>
<a href="Greedy.html">
Greedy Algorithms
</a>
</h3>
<hr>
<h2>
Other Material
</h2>
<p>
<a href="AlgorithmMuseum.html">
The Algorithm Museum
</a>
<br>
<br>
<a
href="MidTerm.html">
Mid-Term Exam
</a>
<br>
<br>
<a
href="MidTermLessons.html">
Mid-Term Exam Lessons
</a>
<br>
<br>
<a
href="FinalF2016.html">
Final Exam
</a>
<br>
<br>
<a href="https://github.com/gcallah/algorithms">
GitHub Repository
</a>
</p>
</div>
</body>
</html>