All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class relaaja.netlayout.VGJ.Queue

java.lang.Object
   |
   +----relaaja.netlayout.VGJ.Queue

public class Queue
extends Object
Class to implement a simple queue of integers.

Here is the source.


Variable Index

 o array
 o size

Constructor Index

 o Queue()

Method Index

 o isEmpty()
 o pop()
 o push(int)

Variables

 o size
 private static int size
 o array
 Vector array

Constructors

 o Queue
 public Queue()

Methods

 o push
 public int push(int item)
 o pop
 public int pop()
 o isEmpty
 public boolean isEmpty()

All Packages  Class Hierarchy  This Package  Previous  Next  Index