Class Node

java.lang.Object
  |
  +--Node

public class Node
extends Object

Linked list data structure for a Point.


Field Summary
 Node next
          a link to another Node
 Point p
          the Point for this Node
 
Constructor Summary
Node(Point p)
          Constructs a Node with the specified Point.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

p

public Point p
the Point for this Node

next

public Node next
a link to another Node
Constructor Detail

Node

public Node(Point p)
Constructs a Node with the specified Point. The next Node is initialized to null.
Parameters:
p - the Point for this Node


Visualization of Graph Algorithms

Author: Paul Simbi
Started by: Kevin Wayne
2002