All the material in book in Chapters 1 and 2, and the Java review in appendix A
All the material in the assignments
All the quizzes
Review all the code posted on the course web page. Understand this code well enough to be able to code similar programs. Actual question may ask for something similar, but not quite the same.
Understand what works in Java and what doesn’t:
Declare variables before using them
Don’t pretend that a method exists when you don’t know whether it does
Return values of the correct type from methods that have a non-void return type,
etc.
Java Review
Know when to create a new object
Static methods are called independently of an object, whereas instance methods (non-static methods) can only be called from an object, and only if the object is not null
examples:
String.length() is an instance method. So if I have a String s = …, I can call s.length()
but if String s = null, s.length() will throw a NullPointerException
System.arraycopy() is a static method. So I can call it without having an object of type System
Can only use whatever methods the class provides, including methods provided by the superclasses
toString(), equals are available for all objects
Initialize all variables
Provide at least one constructor for each object
Parameters must match, and return values must be returned
Parameters types must match, and return types must match, so for example
publicstaticintfoo(){returntrue;}
is incorrect
Exceptions can be thrown and caught
Exceptions that are not runtime exceptions must be declared in the method header
A collection of attributes and behaviors makes up an abstract data type
Similar to the notion of a data type in programming: an int type has an attribute (the value) and several behaviors (addition, subtraction, etc) but not others (negation)
But an ADT can be much more general than a data type
ADTs are useful when designing programs
There are many intuitive ADTs for real-world objects
ADTs for programs become more intuitive with practice
What is the difference between an Abstract Data Type and an Abstract Class?
Interfaces
An interface is a list of methods, with their types
Occasionally interfaces also include constants
The names of method parameters are significant to the reader, but not to the compiler
Any class that implements an interface must provide the corresponding methods
A list in which the elements are stored in an array
The array may have more elements than the list, so a class variable is needed to keep track of the size of the list
As the list grows, may need a new array, so adding at the end of the array is O(n)
Adding and removing at the beginning or in the middle of the array is always O(n) – make sure you understand why
Linked List
A list in which each element is stored in a node, and nodes are linked to each other
The number of nodes is exactly the same as the number of elements
Each node has a reference to the value stored (item, data, value, or a similar name) and a reference to the next node in the list, if any (always called next)
The end of the list is reached when the next field has the value null
A linked list must store the head of the list
Adding at the end of the linked list is faster if a tail pointer is kept – O(1) instead of O(n)
Adding and removing at the front of a linked list is always O(1)
In a circular list, the last next field refers (back) to the head of the list
In a doubly-linked list, each node has a reference to the node before it (prev or previous)
In a doubly-linked circular list, the tail is the previous node for the head, and the head is the next node for the tail
Runtime analysis
Need to meaningfully be able to compare algorithms, independently of which computer they run on
So ignore constant factors of speed difference
If two algorithms have different growth rates, e.g. n2 and n3, then for large enough n, the n3 will take longer even if the constant factor is very small
Big-O notation: only consider the fastest growing term in the equation, so n2 + n log n + 5n + 2 is O(n2)
In general, O(1) < O(log n) < O(sqrt(n)) < O(n) < O(n2) < O(n3) < O(2n)
This also means that O(n) < O(n log n) < O(n sqrt(n)) < O(n2)
If in doubt, review the loops program (and run it yourself!) and make sure you understand the growth rates and where they come from
Only consider the worst-case running time
On the exam, you may be asked to do runtime analysis of simple programs or code snippets, or of algorithms studied in this class
Iterators
An iterator is an object that keeps track of the state of a traversal of a collection
An iterator is like a bookmark for a book: there can be many bookmarks for a given book, and they are objects that are different from both the book and the reader
Calling the iterator() method of a collection class is the usual way to create a new iterator
Once the iterator exists, calls to hasNext() and next() may continue until there are no more elements
Or, calling just next() until it throws an exception
For example:
List<E>list=...Iterator<E>iter=list.iterator();while(iter.hasNext()){Evariable=iter.next();// can use "variable" in the loop}
As an alternative to explicitly calling the iterator methods, use the foreach style:
for(Evariable:Iterable<E>){// can use "variable" in the loop}
Every Java variable (that is not of a basic type) is a reference to an object, and may be null
Two objects can be equal in different ways:
a == b if and only if both references are to the same object, or both are null
a.equals(b) if a is not null, and a’s equals method returns true when given b as a parameter
Usually, a.equals(b) if the contents of a match the contents of b
For example:
Stringa=newString("foo");Stringb=newString("foo");if(a==b){System.out.println("two different objects are equal! Something is wrong");}if(a.equals(b)){System.out.println("foo is equal to foo. Life is good");}
If I pass an int as parameter to a method, and the method changes the value of the int, my value does not change. For example:
intx=3;m(x);
The value of x is still 3 after the call, no matter what m does.
If I pass an object as parameter to a method, and the method changes what object the parameter refers to, my value does not change. For example: