home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Stacks5.java < prev    next >
Text File  |  1998-05-08  |  719b  |  25 lines

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