-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDS.html
More file actions
62 lines (61 loc) · 2.69 KB
/
Copy pathDS.html
File metadata and controls
62 lines (61 loc) · 2.69 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Course Details</title>
<link rel="stylesheet" href="Course.css" />
</head>
<body>
<div class="header">
<a href="index.html#courses"><div class="academy-name"><h2>CODEIN</h2></div></a>
<div class="course-title">Data Structure</div>
</div>
<div class="course-box">
<h2>Course Details</h2>
<div class="course-description">
<b>This course goes through all the data structures a computer scientist should know and understand. We'll learn how to build it and more importantly when to use each one.</b>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 1: Introduction :</div>
<div class="chapter-detail">Discover the difference between Abstract and linear data types.</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 2: ////////// :</div>
<div class="chapter-detail">////////////////////////////</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 3: Complexity Analysis :</div>
<div class="chapter-detail">Learn how to derive the time complexity of your code.</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 4: Stack :</div>
<div class="chapter-detail">Learn stack implemention and usage across different applications.</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 5: Queue :</div>
<div class="chapter-detail">Learn queue implemention , usage and how it differs from a stack.</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 6: :</div>
<div class="chapter-detail"></div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 7: Trees :</div>
<div class="chapter-detail">Discover how to create BSTs dynamically and staticaly , how to traverse it and do different types of operations on it.</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 8: Sorting :</div>
<div class="chapter-detail">Learn how to implement different sorting algorithims and discover their time complexity to figure out which is best.</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 9: :</div>
<div class="chapter-detail"></div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 10: Hash :</div>
<div class="chapter-detail">Learn how to build hash tables and different hashing funcitons to create extremely efficient data storage systems.</div>
</div>
</div>
</body>
</html>