home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-07-14 | 655 b | 23 lines |
- // Copyright(c) 1996 ObjectSpace, Inc.
- import jgl.*;
-
- public class Stacks5
- {
- public static void main( String[] args )
- {
- // Use a GreaterString function object for comparing elements. This will
- // order strings in ascending order.
- PriorityQueue queue = new PriorityQueue( new GreaterString() );
- queue.push( "cat" );
- queue.push( "dog" );
- queue.push( "ape" );
- queue.push( "bat" );
- queue.push( "fox" );
- queue.push( "emu" );
-
- System.out.println( "Pop and print each element." );
- while( !queue.isEmpty() )
- System.out.print( queue.pop() + " ");
- System.out.println();
- }
- }