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