forked from cs1331/cs1331.github.io.old
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcs1331.json
More file actions
177 lines (177 loc) · 5.93 KB
/
cs1331.json
File metadata and controls
177 lines (177 loc) · 5.93 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"intro-cs1331": {
"topic": "Intro to CS 1331",
"materials": ["[Syllabus](syllabus.html)", "[Schedule](schedule.html)",
"[Meet Prof. Simpkins](slides/meet-simpkins.html)",
"[Meet Prof. McDaniel](slides/meet-mcdaniel.html)",
"[Meet the TAs](slides/meet-tas.html)"
],
"order": [1]
},
"intro-java": {
"topic": "[Intro to Java](slides/introduction.pdf)",
"materials": ["[Getting Started on Unix](http://docs.oracle.com/javase/tutorial/getStarted/cupojava/unix.html)",
"[Getting Started on Windows](http://docs.oracle.com/javase/tutorial/getStarted/cupojava/win32.html)",
"Liang: Ch 2"],
"order": [2]
},
"values-variables": {
"topic": "[Values and Variables](slides/values-variables.html)",
"materials": ["Tutorial [Variables](http://docs.oracle.com/javase/tutorial/java/nutsandbolts/variables.html), [Primitive Types](http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html), [Operators](http://docs.oracle.com/javase/tutorial/java/nutsandbolts/operators.html), [Expressions and Statements](http://docs.oracle.com/javase/tutorial/java/nutsandbolts/expressions.html)", "Liang: Ch 2", "[Basics Example Code](https://github.com/cs1331/code-basics)"],
"order": [3]
},
"programs-methods": {
"topic": "[Programs and Methods](slides/programs-methods.html)",
"materials": ["Lecture Notes: [Programs and Methods](http://cs1331.gatech.edu/lecture-notes/programs-methods.pdf)",
"Tutorial: [Closer Look at Hello World](http://docs.oracle.com/javase/tutorial/getStarted/application/index.html), [Common Problems](http://docs.oracle.com/javase/tutorial/getStarted/problems/index.html), [I/O from Command Line](http://docs.oracle.com/javase/tutorial/essential/io/cl.html)",
"Liang: Ch 2"],
"order": [4]
},
"control-structures": {
"topic": "[Control Structures](slides/control-structures.html)",
"materials": ["Tutorial: [Control Flow Statements](http://docs.oracle.com/javase/tutorial/java/nutsandbolts/flow.html)",
"Liang: Ch 3-5 (return statement)"],
"order": [5]
},
"arrays": {
"topic": "[Arrays](slides/arrays.html)",
"materials": ["Tutorial: [Arrays](http://docs.oracle.com/javase/tutorial/java/nutsandbolts/arrays.html)",
"Liang: Ch 2, 77-85"],
"order": [6,7]
},
"java-projects": {
"topic": "[Java Projects](slides/java-projects.html)",
"materials": [""],
"order": [8]
},
"data-abstraction": {
"topic": "[Data Abstraction](slides/data-abstraction.html)",
"materials": ["Tutorial - [Classes](http://docs.oracle.com/javase/tutorial/java/javaOO/classes.html)",
"Liang: Ch 9",
"[Classes Example Code](https://github.com/cs1331/cs1331.github.io/tree/master/code/classes)]",
"Liang: Ch 9"],
"order": [9]
},
"classes": {
"topic": "[Classes](slides/classes.html)",
"materials": ["Tutorial - [Classes](http://docs.oracle.com/javase/tutorial/java/javaOO/classes.html)",
"Liang: Ch 9",
"[Card Example](https://github.com/cs1331/card)"],
"order": [10,11]
},
"review1": {
"topic": "Review 1",
"materials": [""],
"order": [12]
},
"exam1": {
"topic": "**Exam 1**",
"materials": [""],
"order": [13]
},
"pq1": {
"topic": "**Programming Quiz 1**",
"materials": [""],
"order": [14]
},
"inheritance": {
"topic": "Inheritance",
"materials": [""],
"order": [15,16]
},
"polymorphism": {
"topic": "Polymorphism",
"materials": [""],
"order": [17,18]
},
"object-superclass": {
"topic": "The Object Superclass",
"materials": [""],
"order": [19,20]
},
"exceptions": {
"topic": "Exceptions",
"materials": [""],
"order": [21,22]
},
"review2": {
"topic": "Review 2",
"materials": [""],
"order": [23]
},
"exam2": {
"topic": "**Exam 2**",
"materials": [""],
"order": [24]
},
"pq2": {
"topic": "**Programming Quiz 2**",
"materials": [""],
"order": [25]
},
"collections": {
"topic": "Java Collections",
"materials": ["[Collections](slides/collectoins.pdf)"],
"order": [26,27]
},
"collections-algorithms": {
"topic": "Collections Algorithms",
"materials": [""],
"order": [28]
},
"lambda-expressions": {
"topic": "Lambda Expressions",
"materials": [""],
"order": [29]
},
"iterators": {
"topic": "Iterators",
"materials": [""],
"order": [30]
},
"hashed-collections": {
"topic": "Hashed Collections",
"materials": [""],
"order": [31]
},
"javafx": {
"topic": "JavaFX GUIs",
"materials": [""],
"order": [32,33,34]
},
"review3": {
"topic": "Review 3",
"materials": [""],
"order": [35]
},
"exam3": {
"topic": "**Exam 3**",
"materials": [""],
"order": [36]
},
"pq3": {
"topic": "**Programming Quiz 3**",
"materials": [""],
"order": [37]
},
"algorithms": {
"topic": "Algorithms",
"materials": [""],
"order": [100]
},
"recursion": {
"topic": "Recursion",
"materials": [""],
"order": [100]
},
"linked-lists": {
"topic": "Linked Lists",
"materials": [""],
"order": [38]
},
"stacks-queues": {
"topic": "Stacks and Queues",
"materials": [""],
"order": [39]
}
}