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

  1. // Copyright(c) 1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.algorithms.*;
  4. import com.objectspace.jgl.predicates.*;
  5.  
  6. /**
  7.  * Changing the order of traversal for containers.
  8.  *
  9.  * @see com.objectspace.jgl.algorithms.Sorting
  10.  * @version 1.0
  11.  * @author ObjectSpace, Inc.
  12.  */
  13.  
  14. public class Sorting3
  15.   {
  16.   public static void main( String[] args )
  17.     {
  18.     HashSet s = new HashSet();
  19.     s.add( "Austin" );
  20.     s.add( "Texas" );
  21.     s.add( "Fight" );
  22.     s.add( "longhorn" );
  23.     s.add( "Bevo" );
  24.  
  25.     // show in the default order
  26.     System.out.print( "normal: " );
  27.     Printing.println( s.begin(), s.end() );
  28.  
  29.     // show sorted
  30.     System.out.print( "less: " );
  31.     Range r = Sorting.iterSort( s, new LessString() );
  32.     Printing.println( r.begin, r.end );
  33.  
  34.     // show sorted a different way
  35.     System.out.print( "greater: " );
  36.     r = Sorting.iterSort( s, new GreaterString() );
  37.     Printing.println( r.begin, r.end );
  38.  
  39.     // show that iterSort() doesn't sort container
  40.     System.out.print( "normal: " );
  41.     Printing.println( s.begin(), s.end() );
  42.     }
  43.   }
  44.