-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathcs1331.json
218 lines (218 loc) · 10.5 KB
/
cs1331.json
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
{
"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/intro-java.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.pdf)",
"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.pdf)",
"materials": ["Lecture Notes: [Programs and Methods](../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)",
"Liang: Ch 2"],
"order": [4]
},
"control-structures": {
"topic": "[Control Structures](slides/control-structures.pdf)",
"materials": ["Tutorial: [Control Flow Statements](http://docs.oracle.com/javase/tutorial/java/nutsandbolts/flow.html)",
"Tutorial: [Basic IO](http://docs.oracle.com/javase/tutorial/essential/io/index.html)",
"[Basic IO Lecture Notes](lecture-notes/basic-io.pdf)",
"Liang: Ch 3-5 (return statement)",
"Exercise: [Guess Number](exercises/guess-number.html)"],
"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", "Exercise: [Array Utils](exercises/array-util.html)"],
"order": [6,7]
},
"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": [8]
},
"classes": {
"topic": "[Classes](slides/classes.pdf)",
"materials": ["Tutorial - [Classes](http://docs.oracle.com/javase/tutorial/java/javaOO/classes.html)",
"Liang: Ch 9",
"[Card Example](https://github.com/cs1331/card)",
"Exercise: [Vector2](exercises/vector2.html)"],
"order": [9,10]
},
"file-io": {
"topic": "[File IO](slides/file-io.pdf)",
"materials": ["Tutorial - [File IO](https://docs.oracle.com/javase/tutorial/essential/io/fileio.html)"],
"order": [100]
},
"review1": {
"topic": "[Review 1](slides/review1.html)",
"materials": ["[cs1331-exam1-practice.pdf](cs1331-exam1-practice.pdf)",
"[cs1331-exam1-practice-answers.pdf](cs1331-exam1-practice-answers.pdf)"],
"order": [11]
},
"exam1": {
"topic": "**Exam 1**",
"materials": ["[cs1331-exam1-practice.pdf](cs1331-exam1-practice.pdf)",
"[cs1331-exam1-practice-answers.pdf](cs1331-exam1-practice-answers.pdf)"],
"order": [12]
},
"pq1": {
"topic": "**Programming Quiz 1**",
"materials": [""],
"order": [100]
},
"inheritance": {
"topic": "[Inheritance](slides/inheritance.pdf)",
"materials": ["Tutorial: [OOP Concepts](http://docs.oracle.com/javase/tutorial/java/concepts/index.html)", "Liang: Ch 10"],
"order": [13,14]
},
"polymorphism": {
"topic": "[Polymorphism](slides/polymorphism.pdf)",
"materials": ["Tutorial: [Interfaces and Inheritance](http://docs.oracle.com/javase/tutorial/java/IandI/index.html)", "Liang: Ch 11, 13"],
"order": [15,16]
},
"object-superclass": {
"topic": "[The Object Superclass](slides/object-superclass.pdf)",
"materials": ["Tutorial: [Interfaces and Inheritance](http://docs.oracle.com/javase/tutorial/java/IandI/index.html)",
"Tutorial: [Enum Types](http://docs.oracle.com/javase/tutorial/java/javaOO/enum.html)", "Liang: Ch 11, 13"],
"order": [17,18]
},
"review2": {
"topic": "[Review 2](slides/review2.pdf)",
"materials": ["[cs1331-exam2-practice.pdf](cs1331-exam2-practice.pdf)",
"[cs1331-exam2-practice-answers.pdf](cs1331-exam2-practice-answers.pdf)"],
"order": [19]
},
"exam2": {
"topic": "**Exam 2**",
"materials": ["[cs1331-exam2-practice.pdf](cs1331-exam2-practice.pdf)",
"[cs1331-exam2-practice-answers.pdf](cs1331-exam2-practice-answers.pdf)"],
"order": [20]
},
"pq2": {
"topic": "**Programming Quiz 2**",
"materials": [""],
"order": [100]
},
"exceptions": {
"topic": "[Exceptions](slides/exceptions.pdf)",
"materials": ["Tutorial: [Exceptions](http://docs.oracle.com/javase/tutorial/essential/exceptions/)", "Liang: Ch 12"],
"order": [21,22]
},
"java-projects": {
"topic": "[Java Projects](slides/java-projects.html)",
"materials": [""],
"order": [23]
},
"collections": {
"topic": "[Collections](slides/collections.pdf)",
"materials": ["Tutorial: [Introduction to Collections](http://docs.oracle.com/javase/tutorial/collections/intro/index.html)",
"Liang 19, 20, 21"],
"order": [24,25]
},
"collections-algorithms": {
"topic": "[Collections Algorithms](slides/collections-algorithms.pdf)",
"materials": ["Tutorial: [Collections Algorithms](http://docs.oracle.com/javase/tutorial/collections/algorithms/index.html)",
"Liang 19, 20, 21"],
"order": [26,27]
},
"lambda-expressions": {
"topic": "[Lambda Expressions](slides/lambda-expressions.pdf)",
"materials": ["Tutorial: [Lambda Expressions](http://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)",
"Tutorial: [Method References](http://docs.oracle.com/javase/tutorial/java/javaOO/methodreferences.html)",
"Liang 15"],
"order": [28]
},
"iterators": {
"topic": "[Iterators](slides/iterators.pdf)",
"materials": ["Tutorial: [Collections Interface](https://docs.oracle.com/javase/tutorial/collections/interfaces/collection.html)",
"Liang 19, 20, 21"],
"order": [29]
},
"hashed-collections": {
"topic": "[Hashed Collections](slides/hashed-collections.pdf)",
"materials": ["Tutorial: [Object as a Superclass](http://docs.oracle.com/javase/tutorial/java/IandI/objectclass.html)",
"Liang 21"],
"order": [30]
},
"javafx-events": {
"topic": "[JavaFX Events](slides/javafx-events.pdf)",
"materials": ["Tutorial: [JavaFX Overview](http://docs.oracle.com/javase/8/javafx/get-started-tutorial/jfx-overview.htm#JFXST784)",
"Tutorial: [JavaFX UI Components](http://docs.oracle.com/javase/8/javafx/user-interface-tutorial/ui_controls.htm)",
"Tutorial: [JavaFX Scene Graph](http://docs.oracle.com/javase/8/javafx/scene-graph-tutorial/scenegraph.htm)",
"Liang 14"],
"order": [31]
},
"javafx-guis": {
"topic": "[JavaFX GUIs](slides/javafx-guis.pdf)",
"materials": ["Tutorial: [JavaFX Overview](http://docs.oracle.com/javase/8/javafx/get-started-tutorial/jfx-overview.htm#JFXST784)",
"Tutorial: [JavaFX UI Components](http://docs.oracle.com/javase/8/javafx/user-interface-tutorial/ui_controls.htm)",
"Tutorial: [JavaFX Scene Graph](http://docs.oracle.com/javase/8/javafx/scene-graph-tutorial/scenegraph.htm)",
"Liang 14"],
"order": [32,33]
},
"review3": {
"topic": "[Review 3](slides/review3.pdf)",
"materials": ["[cs1331-exam3-practice.pdf](cs1331-exam3-practice.pdf)",
"[cs1331-exam3-practice-answers.pdf](cs1331-exam3-practice-answers.pdf)",
"[cs1331-fall2016-exam3-practice.pdf](cs1331-fall2016-exam3-practice.pdf)",
"[cs1331-fall2016-exam3-practice-answers.pdf](cs1331-fall2016-exam3-practice-answers.pdf)"],
"order": [34]
},
"exam3": {
"topic": "**Exam 3**",
"materials": ["[cs1331-exam3-practice.pdf](cs1331-exam3-practice.pdf)",
"[cs1331-exam3-practice-answers.pdf](cs1331-exam3-practice-answers.pdf)"],
"order": [35]
},
"pq3": {
"topic": "**Programming Quiz 3**",
"materials": [""],
"order": [100]
},
"algorithms": {
"topic": "[Algorithms](slides/algorithms.pdf)",
"materials": [""],
"order": [36]
},
"recursion": {
"topic": "[Recursion](slides/recursion.pdf)",
"materials": [""],
"order": [37]
},
"linked-lists": {
"topic": "[Linked Lists](slides/linked-lists.pdf)",
"materials": [""],
"order": [38]
},
"stacks-queues": {
"topic": "[Stacks and Queues](slides/stacks-queues.pdf)",
"materials": [""],
"order": [39]
},
"final-review": {
"topic": "Final Review",
"materials": ["[CS 1331 Final Exam Study Guide](cs1331-final-exam-study-guide.pdf)",
"[CS 1331 Final Exam Study Guide Answers](cs1331-final-exam-study-guide-answers.pdf)"],
"order": [39]
}
}