home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BUG 15
/
BUGCD1998_06.ISO
/
aplic
/
jbuilder
/
jsamples.z
/
Stacks5.java
< prev
next >
Wrap
Text File
|
1997-07-30
|
677b
|
24 lines
// Copyright(c) 1996,1997 ObjectSpace, Inc.
import COM.objectspace.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();
}
}