-
Notifications
You must be signed in to change notification settings - Fork 36
/
B02-array-based.html
63 lines (54 loc) · 1.56 KB
/
B02-array-based.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<title>Bonus 02: Array-Based Containers</title>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/Microsoft/vscode/extensions/markdown-language-features/media/markdown.css">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/Microsoft/vscode/extensions/markdown-language-features/media/highlight.css">
<style>
.task-list-item {
list-style-type: none;
}
.task-list-item-checkbox {
margin-left: -20px;
vertical-align: middle;
}
</style>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', 'Ubuntu', 'Droid Sans', sans-serif;
font-size: 14px;
line-height: 1.6;
}
</style>
</head>
<body>
<h1 id="bonus-02-array-based-containers">Bonus 02: Array-Based Containers</h1>
<p>Complete array based implementations of an stack, queue, and dequeue</p>
<h2 id="grading">Grading</h2>
<table>
<thead>
<tr>
<th>Criteria</th>
<th>Points</th>
</tr>
</thead>
<tbody>
<tr>
<td>Stack</td>
<td>10</td>
</tr>
<tr>
<td>Queue</td>
<td>20</td>
</tr>
<tr>
<td>Dequeue</td>
<td>20</td>
</tr>
</tbody>
</table>
</body>
</html>