






Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Exam; Class: Object-Oriented Software Dvlpm; Subject: Computer Sci & Software Engr; University: Rose-Hulman Institute of Technology; Term: Unknown 1989;
Typology: Exams
1 / 10
This page cannot be seen from the preview
Don't miss anything!







`^
`^
`^
Milestone 1 official due time Tuesday 8:05 AM ◦^
But you should think of the real due time as Saturdayat noon, so you can make progress on Milestone 2this weekend. `^
`^
`^
`^
`^
`^
`^
`^
show how to insert A4 after A1. `^
class ListNode{
Object element;
// contents of this node
ListNode next;
// link to next node
ListNode (Object element,
ListNode next) {
this.element = element;this.next = next; } ListNode (Object element) {
this(element, null); } ListNode () {
this(null); } }
How to implement
LinkedList? fields?Constructors?Methods?
`^
More specifically, what is a j
ava.util.Iterator
?
◦^
It's an interface: ◦^
interface
java.util.Iterator
◦^
with the following methods: