COSC-503: Objects and Algorithms
Spring 2010
“People who know neither programming nor mathematics take for
granted that programming is like mathematics. Yet, it turns out
that English majors are as likely to be as successful at programming
as mathematics graduates are. In practice, the worlds of mathematics
and programming are just about disjoint.”
—M.H. van Emden, Communications of the ACM, 32(12),
p. 1498, December 1989.
Class Time: |
TR 11:40 AM–12:55 PM |
Classroom: |
REI 281
|
|
|
Instructor: |
Mark Maloof |
Office: |
325 St. Mary's Hall |
Mailbox: |
329A St. Mary's Hall |
Office Hours: |
None for 24–25 academic year.
(or by appointment) |
Everything you need to know about the TAs:
Name |
Netid |
Office Hours |
Grading |
|
|
|
|
Allie Candido |
amc242 |
M 4–6; W 12– 2 |
aaa–ddd |
Lindsay Neubauer |
lan27 |
M 1:30–2:30, 4–5; W 11–12, 1:30–2:30 |
dda–jhh |
Brian Miller |
bcm36 |
T 2:45–4:45; W 4–6 |
jhh–zzz |
TA's Office: 330 St. Mary's Hall
TA's Mailboxes: 329A St. Mary's Hall
Syllabus
Assignments and Grading
- Programming Projects, 40%
- Project 1, assigned W 1/20,
due W
2/10 2/17, 6 points
- Project 2, assigned W 2/24, due W
3/24 3/26, 10 points
- Project 3, assigned W 3/24, due W 4/14, 12 points
- Project 4, assigned W 4/14, due M 5/3, 12 points
- Midterm Exam, T 3/2, 20%
- Final Exam, F 5/7, 12:30–2:30 PM, REI 281, 30%
- Miscellany (10%)
- Quizzes
- Homework
- Homework 1, due W 1/27, 5 PM
- Homework 2 (Optional)
Graduate Students
- In addition to the above, graduate students must complete a
programming project relevant to their field of study.
Its size and complexity should be roughly equivalent to projects 4 and 5.
It will count for 20% of their final grade.
Students must meet with the instructor before the midterm to discuss
appropriate projects.
Students should begin programming no later than the beginning of
April, and the assignment will be due on the last day of class
at 5 PM.
Grading
string Grades::toLetterGrade()
{
if (grade >= 94)
return "A";
else if (grade >= 90)
return "A-";
else if (grade >= 87)
return "B+";
else if (grade >= 84)
return "B";
else if (grade >= 80)
return "B-";
else if (grade >= 77)
return "C+";
else if (grade >= 74)
return "C";
else if (grade >= 70)
return "C-";
else if (grade >= 67)
return "D+";
else if (grade >= 64)
return "D";
else
return "F";
} // Grades::toLetterGrade
Resources
- Project Grading Sheet
- Safari Tech Books Online: A great place to find e-books
on learing Unix, vi, and emacs.
- vi Reference Card
- emacs Reference Card
- gdb Reference Card
- How
to Write Doc Comments for the Javadoc Tool
- doxygen: A documentation system for
C++, C, Java, and other languages.
- Code::Blocks, a free C++
integrated development environment for Linux, Mac, and Windows.
- Eclipse,
a free integrated development environment (IDE) for Linux, Mac, and Windows.
- The vi Lovers Home Page Oh, yeah...
- vi Information Links
- Lemmy, the Unix vi editor for Windows
- More vi clones for Windows
- Useful Unix Commands
- HOWTO: Log in and transfer files to seva from MacOS or Linux
- HOWTO: Log in and transfer files to seva from Windows
- HOWTO: Create and compile files under Unix
- COSC-071 Frequently Asked Questions
- WinSSH: a secure
telnet and ftp client for Windows (educational license)
- PuTTY:
a free secure telnet and ftp client for Windows
-
E-ssentials: Student Guides to Technology at Georgetown University
-
Guide to Unix Computing (Adobe Acrobat file)
- C++ and Unix books
- Reiter's Bookstore, a great local
place to find technical books
Marginally Interesting Links
Copyright © 2019 Mark Maloof. All Rights Reserved.
This material may not be published, broadcast, rewritten,
or redistributed.