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

Constructor Index

 o LinkedList()
Construct the list

Method Index

 o isEmpty()
Test if the list is logically empty.
 o makeEmpty()
Make the list logically empty.

Constructors

 o LinkedList
 public LinkedList()
Construct the list

Methods

 o isEmpty
 public boolean isEmpty()
Test if the list is logically empty.

Returns:
true if empty, false otherwise.
 o makeEmpty
 public void makeEmpty()
Make the list logically empty.


All Packages  Class Hierarchy  This Package  Previous  Next  Index