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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import java.util.Enumeration;
  4.  
  5. public class Stacks4
  6.   {
  7.   public static void main( String[] args )
  8.     {
  9.     // Use a HashComparator for comparing elements. Since the hash value of an
  10.     // Integer is its int value, this will order Integers in descending order.
  11.     PriorityQueue queue = new PriorityQueue();
  12.     queue.push( new Integer( 5 ) );
  13.     queue.push( new Integer( -2 ) );
  14.     queue.push( new Integer( 10 ) );
  15.     queue.push( new Integer( 6 ) );
  16.     queue.push( new Integer( 20 ) );
  17.     queue.push( new Integer( -10 ) );
  18.  
  19.     System.out.println( "queue = " + queue );
  20.     System.out.println();
  21.  
  22.     System.out.println( "Non-destructively enumerate the PriorityQueue." );
  23.     Enumeration e = queue.elements();
  24.     while ( e.hasMoreElements() )
  25.       System.out.print( e.nextElement() + " " );
  26.     System.out.println();
  27.  
  28.     System.out.println( "Pop and print each element." );
  29.     while ( !queue.isEmpty() )
  30.       System.out.print( queue.pop() + " " );
  31.     System.out.println();
  32.     }
  33.   }
  34.