JavaAlgorithms
Elementary and no so elementary Java algorithms
listAlgorithms.ListNode< T extends Comparable< T > > Class Reference

List of all members.

Public Member Functions

 ListNode (T value)
getValue ()
void setValue (T value)
ListNode< T > getNext ()
void setNext (ListNode< T > next)
void printList ()
Iterator< ListNode< T > > iterator ()

Detailed Description

ListNode Jun 19, 2013

Author:
Ian Kaplan, iank@bearcave.com
Parameters:
<T>a type that implements Comparable

Definition at line 20 of file ListNode.java.


Constructor & Destructor Documentation

listAlgorithms.ListNode< T extends Comparable< T > >.ListNode ( value)

Definition at line 25 of file ListNode.java.


Member Function Documentation

ListNode<T> listAlgorithms.ListNode< T extends Comparable< T > >.getNext ( )

Definition at line 41 of file ListNode.java.

T listAlgorithms.ListNode< T extends Comparable< T > >.getValue ( )

Definition at line 31 of file ListNode.java.

Iterator<ListNode<T> > listAlgorithms.ListNode< T extends Comparable< T > >.iterator ( )

Definition at line 63 of file ListNode.java.

void listAlgorithms.ListNode< T extends Comparable< T > >.printList ( )

Definition at line 51 of file ListNode.java.

void listAlgorithms.ListNode< T extends Comparable< T > >.setNext ( ListNode< T >  next)

Definition at line 46 of file ListNode.java.

void listAlgorithms.ListNode< T extends Comparable< T > >.setValue ( value)

Definition at line 36 of file ListNode.java.


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables