Class Queue

java.lang.Object
  |
  +--Queue

public class Queue
extends java.lang.Object

A Queue is a linked list implementation of a queue, used for BFS.


Constructor Summary
Queue()
           
 
Method Summary
 void enqueue(Configuration config)
          Add config to the queue.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Queue

public Queue()
Method Detail

enqueue

public void enqueue(Configuration config)
Add config to the queue.