All Packages Class Hierarchy This Package Previous Next Index
Class DataStructures.LinkedList
java.lang.Object
|
+----DataStructures.LinkedList
- public class LinkedList
- extends java.lang.Object
- implements DataStructures.List
Linked list implementation of the list
using a header node.
Access to the list is via LinkedListItr.
- See Also:
- LinkedListItr
-
LinkedList()
- Construct the list
-
isEmpty()
- Test if the list is logically empty.
-
makeEmpty()
- Make the list logically empty.
LinkedList
public LinkedList()
- Construct the list
isEmpty
public boolean isEmpty()
- Test if the list is logically empty.
- Returns:
- true if empty, false otherwise.
makeEmpty
public void makeEmpty()
- Make the list logically empty.
All Packages Class Hierarchy This Package Previous Next Index