Wyo Java Ch. 19 Lecture Notes

Note: Static inner classes as explained on p. 753 will not be covered in this course or the AP exam. Also, be aware that the author implements linked lists differently from the AP exam creators.

Objective #1: Understand the java.util.List interface and some of its methods.

Objective #2: Use linked lists from the standard library (java.util.LinkedList).

Objective #3: Use iterators to traverse linked lists.

Objective #4: Implement linked lists.

Objective #5: Distinguish between abstract and concrete data types.

Objective #6: Compare the efficiency of lists and arrays.

Objective #7: Use stacks.

Objective #8: Use queues.