home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / Stacks5.java < prev    next >
Text File  |  1997-07-30  |  677b  |  24 lines

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import COM.objectspace.jgl.*;
  3.  
  4. public class Stacks5
  5.   {
  6.   public static void main( String[] args )
  7.     {
  8.     // Use a GreaterString function object for comparing elements. This will
  9.     // order strings in ascending order.
  10.     PriorityQueue queue = new PriorityQueue( new GreaterString() );
  11.     queue.push( "cat" );
  12.     queue.push( "dog" );
  13.     queue.push( "ape" );
  14.     queue.push( "bat" );
  15.     queue.push( "fox" );
  16.     queue.push( "emu" );
  17.  
  18.     System.out.println( "Pop and print each element." );
  19.     while ( !queue.isEmpty() )
  20.       System.out.print( queue.pop() + " ");
  21.     System.out.println();
  22.     }
  23.   }
  24.