Announcements
- Graded exams and assignments from this semester can be picked up from Professor Myers.
Overview
This is an honors version of CS 2110/ENGRD 2110; credit is given for only one of CS 2110 and 2112. Transfer between CS 2110 and 2112 (in either direction) is encouraged during the first three weeks. We cover intermediate software design and introduce some key computer science ideas. The topics are similar to those in CS 2110 but are covered in greater depth, with more challenging assignments. These topics include object-oriented programming, program structure and organization, program reasoning using specifications and invariants, recursion, design patterns, concurrent programming, graphical user interfaces, data structures, sorting and graph algorithms, asymptotic complexity, and simple algorithm analysis. Java is the principal programming language.
Instructor: Andrew Myers
Course information
Course Staff
Placeholder for staff
Prerequisites
Very good performance in CS 1110 or CS 1130 or an equivalent course, or permission of the instructor. If you are unsure whether CS 2110 or CS 2112 is the right course for you, please talk to the instructor of either course. Both courses cover similar material and satisfy the same requirements, but CS 2112 covers material in more depth and has more challenging assignments. It is aimed at computer science majors.
Texts
You are required to read the course notes posted on the web site. These will often contain more detail than what was presented in lecture.
There is a recommended textbook, which is also the textbook for CS 2110. It is useful especially for examples of how to implement various data structures.
- Data Structures and Abstractions with Java, 2nd edition, Frank M. Carrano, Prentice Hall, 2007. ISBN 0-13-237045-X.
See also the Prentice Hall website for additional material.
Other Sources
- Data Structures and Problem Solving Using Java, 3rd edition, Mark Allen Weiss, Addison Wesley, 2006. ISBN 0-321-32213-4. See also Weiss's website for additional material. A required text from previous years.
- Program development in Java: Abstraction, Specification, and Object-Oriented Design, B. Liskov and J. Guttag, Addison-Wesley, 2000. ISBN 0-201-65768-6. An excellent source of material on designing and specifying abstractions.
- Java Precisely, 2nd edition, P. Sestoft, MIT Press, 2005. To access the entire book for free, login via the Cornell Engineering Library.
- Design Patterns, Erich Gamma, Richard Helm, Ralph Johnson, and John M. Vlissides, Addison Wesley, 1994. ISBN 0-201-63361-2. An extremely influential book on software engineering. According to Wikipedia, as of April 2007, the book was in its 36th printing and has sold over 500,000 copies in English and 13 other languages.
- Java in a Nutshell, 5th edition, David Flanagan, O'Reilly, 2005. ISBN 0-596-00773-6.
These titles are on reserve in the Engineering library, Carpenter Hall.
Grading and submission policies
There will be 7 assignments, mostly involving programming but also some written problems. These assignments will make up 40% of your score. The first 2–3 assignments will be done solo; the final project will be done with a partner.
Assignment late penalties:
We are flexible about submitting assignments late. Unless otherwise specified, assignments may be turned in late with the following penalties applied to the score received:
- 1 day late: −10%
- 2 days late: −20%
- 3 days late: −40%
- 4 days late: −70%
- >4 days late: −100% (we probably will not grade it)
Weekends count as a single day for the purpose of computing penalties. So turning in your assignment on Sunday night is no worse than turning it in on Saturday.
Exams
There will be one prelim on October 2 and a final exam on December 13.
The prelim will be 20% of your score and the final will be 35%.
Other components
We expect you to participate in class and elsewhere. 2% of the score will be for class participation (in-class, Piazza, course evals) and for in-class quizzes.
Placeholder for schedule
Resources
- Course notes
- Java language
- Java version
- Interactive development environments (IDEs)
- Programming advice and resources
- Computer labs
- Support services
- CS 2110 Resources
Course notes
Course notes for individual lectures and recitations can be found on the course schedule. The notes are also available as a single printable document: CS 2112 course notes.
Java language
This course uses Java, for several reasons. Java is the most widely used widely used object-oriented programming language, and Java programming skill is in high demand. Java is also a good vehicle for explaining many of the software engineering ideas that will be covered in the course. Java is occasionally a bit verbose. However, most of the ideas you will be exposed to in this course, and the skills you will develop, will transfer to other programming languages.
-
• Prof. Gries has written a summary of Java that may be helpful to those encountering Java for the first (or second) time: Java Summary.
• The Java API is very useful for learning how to use the many existing Java class libraries.
• The Java Language Specification is helpful if you want to really understand how Java works.
Brushing Up
-
For students with limited Java experience, we recommend the online notes from CS 1130, Transition to Object-oriented Programming as a refresher. This is a self-paced course consisting of several modules that you can go through at your leisure.
Review the introductory chapters in the textbook and the Java reference books listed on the course info page.
See Oracle's official Java Tutorial.
For students with C++ experience, see this comparison of C++ with Java.
Java version
We will the use the Java 7 Standard Edition (Java SE 7) platform, which consists of the Java Development Kit (JDK) and the Java Runtime Environment (JRE). If you are using Java 6 or earlier, please upgrade.
To find out which version of the Java Runtime Environment (JRE) you are
running, open a command window (in Windows, Start > Run... and type cmd
,
and in Mac OS X, Applications > Utilities > Terminal)
and type java -version
at the command prompt:
C:\>java -version java version "1.6.0_27" Java(TM) SE Runtime Environment (build 1.6.0_27-b07) Java HotSpot(TM) Client VM (build 20.2-b06, mixed mode, sharing)
This says I have version 6 installed (6 and 1.6 are synonymous).
If you are on a PC running Windows and have never installed a version
of the Java Development Kit (JDK) on your machine, you probably don't have it.
If you are on a Mac, you probably do. To find out, type javac -version
:
C:\>javac -version javac 1.6.0_27
If you get an error message or the version is earlier than 1.6, you must (re)install the JDK.
If you are using Java 8, your code must not have any Java 8-specific features. To configure Eclipse to prevent Java 8 features, go to Project > Properties > Java Compiler, click “Configure Workspace Settings”, and set the compiler compliance level to 1.7.
Installing the JDK
The JDK is already installed in CIT and ACCEL labs. However, installing it own your own machine will greatly facilitate your work. Please note that you should double check your work in a public lab, as privately owned machines occasionally exhibit different behaviors.
Windows and Unix
To download the JDK, visit Oracle's Java web site and download and install JDK 6 Update 27.
Mac
Oracle does not support Java for Macs. However, there is support available from Apple. If you are running Mac OS X version 10.4 (Tiger), 10.5 (Leopard) or 10.6 (Snow Leopard), your Mac already has the JDK installed. For 10.7 (Lion), you need to download and install it from here.
Compiling and Running from the Command Line
Compiling
Say your main class is MyProgram
and it is
contained in the source file MyProgram.java
.
If it is not in a package, navigate
to the folder containing MyProgram.java
and type javac MyProgram.java
.
If it is in a package (say myPackage
), the
source should be in a folder called myPackage
. Navigate
to the folder containing myPackage
and type javac myPackage/MyProgram.java
.
Running
From the same folder you compiled from, type
java MyProgram <program arguments>
if it is not
in a package, and java myPackage.MyProgram <program arguments>
if it is.
Specifying a Classpath
Sometimes you may need to inform Java where to find auxiliary
classes. You can do this with the -cp
option
to the java
command.
Supply a sequence of folders telling Java where to look
for classes, separated by :
(Mac) or
;
(Windows).
Local Software
There are some basic Java utilities specifically for CS 2110 that you
may find useful. These are contained in a package edu.cornell.cs.cs2110
contained in a
.jar
file which you can download from here.
Follow the installation instructions on that page.
Javadoc documentation is also available.
IDEs
IDE stands for integrated development environment. The use of an IDE is the best way to develop Java programs. IDEs provide many valuable aids such as syntax checking, debugging, and refactoring that can save you a lot of effort.
There are many good IDEs. We recommend Eclipse, but you may use any one that you like, or none at all. Eclipse is installed in all the labs, along with some others. Early recitation sections will get you started with Eclipse if you are not familiar with an IDE.
Here are some links:
For consistency, the course staff use Eclipse with a common Java style. You can download the Eclipse style template here.
Programming
There are many valuable resources that can help you take your programming skills to the next level. Here are a few links:
General
Software Development Methodologies
Debugging
Just for Fun
- How not to program
- Teach Yourself Programming in Ten Years
- Quines (Self-Reproducing Programs)
- Powers Of Ten
- Programming Quotes
- How To Become A Hacker
- How To Write Unmaintainable Code
- History of Operator Precedence
- Software Bugs & Glitches
- Doom for System Administration
- The International Obfuscated C Code Contest
- The Easter Egg Archive
- OOP Criticism
- Esoteric Programming Languages
Computer Labs
CIT Labs
Cornell Information Technologies (CIT) runs several computer labs across campus for all members of the Cornell community. The JDK and Eclipse are installed on these machines. Check here for locations and times of operation.
ACCEL Lab
You can also find the course software in the Academic Computing Center (ACCEL), located in the Engineering Library in Carpenter Hall. Any CS student may register for an account.
Support Services
Academic Excellence Workshops
The Academic Excellence Workshops (AEW) offer an opportunity for students to gain additional experience with course concepts in a cooperative learning environment. Research has shown that cooperative and collaborative methods promote higher grades, greater persistence, and deeper comprehension. The material presented in the workshop is at or above the level of the regular course. We do not require joining the AEW program, but do encourage students to join if they are seeking an exciting and fun way to learn. The AEW carries one S/U credit based on participation and attendance. The time commitment is two hours per week in the lab. No homework will be given. This is a wonderful opportunity for students to seek extra help on course topics in a small group setting.
Your fellow undergraduate students, who are familiar with the course material, teach the sessions with material that they prepare. The course staff provide guidance and support but do not actually teach the AEW course content or any session. A representative from the AEW program will be speaking about the program and registration procedures in lecture.
Your AEW liaison for this semester is Jason Zhao.
See the AEW webpage for further information.
Other Support Services
PROGRAM | DESCRIPTION |
---|---|
Student Resources For Engineering Students | This site has links to a variety of services. |
Free Computer Training | CIT offers free computer training throughout the semester. Email tts_consult@cornell.edu for an appointment. |
Student Web Services | This website collects services that are more general. |
Engineering Advising | Academic advising for engineering students. |
Arts College Student Services | A listing of general support services for a variety of concerns students may have. |
Tau Beta Pi | Tau Beta Pi Engineering Honor Society Tutoring Program. The members of Tau Beta Pi are selected for their academic aptitude and social commitment. They hold one-on-one tutoring sessions with students in courses that typically have a large enrollment of engineers. |
Learning Styles | Not everyone learns the same way. If you are curious about how you learn, check out this collection. |
Gannett | The Cornell University Health Service Center. For all health related concerns. |
CAPS | If you are experiencing emotional distress, we urge you to contact CAPS, the Counseling and Psychological Services. |
Dear Uncle Ezra | When all else fails, ask Uncle Ezra! |
Assignments
- Assignment 1: Introduction to Java and object-oriented languages (source code available on CMS, last update: 8/27)
- Assignment 2: Ciphers and encryption (source code available on CMS, last update: 9/7)
- Assignment 3: Data structures and performance analysis (source code available on CMS, last update: 9/24)
- Assignment 4: Parsing and fault injection (source code available on CMS, last update: 10/7)
- Assignment 5: Interpretation and simulation (source code available on CMS, last update: 10/26)
- Assignment 6: Graphical user interface design (last update: 10/31)
-
Assignment 7: Distributed and concurrent programming
(last update: 11/16)
- [ Source code (last update: 11/14) | API definition (last update: 11/14) ]
Other resources for programming assignments: