-
Notifications
You must be signed in to change notification settings - Fork 2
/
material.html
95 lines (90 loc) · 4.95 KB
/
material.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Material</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="images/icons/favicon.ico"/>
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!--===============================================================================================-->
</head>
<body>
<div class="limiter">
<div class="container-table100">
<div class="wrap-table100">
<div class="table100">
<table>
<thead>
<tr class="table100-head">
<th class="column1">Course</th>
<th class="column3">Description</th>
<th class="column6">Material</th>
</tr>
</thead>
<tbody>
<tr>
<td class="column1">CD</td>
<td class="column3"><b>Compilers</b></br><i>Concepts and assignments</i></td>
<td class="column6"><a href="http://web.stanford.edu/class/archive/cs/cs143/cs143.1128/">[CS143 Course from stanford]</a></br><a href="https://lagunita.stanford.edu/courses/Engineering/Compilers/Fall2014/course/">[Stanford Laguinta Course]</a></td>
</tr>
<tr>
<td class="column1">DBMS</td>
<td class="column3"><b>Databases</b></br><i>Concepts and assignments</i></td>
<td class="column6"><a href="https://cs145-fa18.github.io/">[Course]</a></br><a href="https://www.db-book.com/db6/">[Korth material]</a></td>
</tr>
<tr>
<td class="column1">DAA</td>
<td class="column3"><b> Design and Analysis of Algorithms </b></td>
<td class="column6"><a href="https://cs161-sum18.github.io/">[DAA]</a></br><a href="https://lagunita.stanford.edu/courses/course-v1:Engineering+Algorithms1+SelfPaced/course/">[Stanford algorithms-1]</a></br><a href="https://lagunita.stanford.edu/courses/course-v1:Engineering+Algorithms2+SelfPaced/course/">[Stanford algorithms-2]</a></td>
</tr>
<tr>
<td class="column1">TOC</td>
<td class="column3"> <b>Theory of Computation</b> </td>
<td class="column6"><a href="https://lagunita.stanford.edu/courses/course-v1:ComputerScience+Automata+SelfPaced/course/">[Automata Theory Course by Ullman]</a></br><a href="http://www.aduni.org/courses/theory/index.php?view=cw">[Aduni TOC Course]</a></br><a href="http://infolab.stanford.edu/~ullman/ialc/spr10/spr10.html">[Material and course by Ullman]</a></br><a href="https://john.cs.olemiss.edu/~hcc/csci311/notes/311lectureNotes.html">[Linz notes]</a></td>
</tr>
<tr>
<td class="column1">CN</td>
<td class="column3"><b> Computer Networks </b></td>
<td class="column6"><a href="http://media.pearsoncmg.com/ph/streaming/esm/tanenbaum5e_videonotes/tanenbaum_videoNotes.html">[Tannebaum Video Tutorials]</a></br><a href="http://highered.mheducation.com/sites/0072967757/student_view0/index.html">[Forouzan Slides and Animations]</a></td>
</tr>
<tr>
<td class="column1">OS</td>
<td class="column3"><b> Operating Systems </b></td>
<td class="column6"><a href="https://www.os-book.com/OS9/">[Operating System Material]</a></br><a href="https://www.cs.uic.edu/~jbell/CourseNotes/OperatingSystems/index.html">[Os Notes]</a></td>
</tr>
<tr>
<td class="column1">C</td>
<td class="column3"><b> C-PROGRAMMING </b></td>
<td class="column6"><a href="https://www.cs.uic.edu/~jbell/CourseNotes/C_Programming/index.html"> [C-PROGRAMMING]</a></td>
</tr>
<tr>
<td class="column1">DS</td>
<td class="column3"><b>Data Structues</b></td>
<td class="column6"><a href="http://cs.yale.edu/homes/aspnes/classes/223/notes.html">[Data structures Material]</a></td>
</tr>
<tr>
<td class="column1">DM</td>
<td class="column3"><b> Discrete Mathematics </b></td>
<td class="column6"><a href="http://www.cse.iitm.ac.in/~theory/tcslab/mfcs.html"> [Discrete Mathematics Matreial]</a></td>
</tr>
<tr>
<td class="column1">CO</td>
<td class="column3"> <b>Computer Organization</b> </td>
<td class="column6"><a href="http://web.cs.iastate.edu/~prabhu/Tutorial/title.html">[COA-1]</a></br><a href="http://www.cs.utah.edu/~rajeev/cs3810/">[COA-2]</a></td>
</tr>
<tr>
<td class="column1">CS</td>
<td class="column3"> <b>Foundation CS</b> </td>
<td class="column6"><a href="http://infolab.stanford.edu/~ullman/focs.html"> [Foundation CS]</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
</html>