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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.adapters.*;
  4. import com.objectspace.jgl.algorithms.*;
  5. import com.objectspace.jgl.predicates.*;
  6.  
  7. /**
  8.  * Minimum and maximum elements of an SGL container and a native array of ints.
  9.  *
  10.  * @see com.objectspace.jgl.algorithms.MinMax
  11.  * @version 3.0.0
  12.  * @author ObjectSpace, Inc.
  13.  */
  14.  
  15. public class MinMax1
  16.   {
  17.   public static void main( String[] args )
  18.     {
  19.     Array array = new Array();
  20.     array.add( "cat" );
  21.     array.add( "ape" );
  22.     array.add( "bat" );
  23.     ArrayIterator min = (ArrayIterator)MinMax.minElement( array, new LessString() );
  24.     System.out.println( "array = " + array );
  25.     System.out.println( "min = " + min.get() + " at index " + min.index() );
  26.  
  27.     int intArray[] = { 3, 2, 7, 8, 1, 6 };
  28.     IntIterator begin = IntIterator.begin( intArray );
  29.     IntIterator end = IntIterator.end( intArray );
  30.     IntIterator max = (IntIterator)MinMax.maxElement( begin, end );
  31.     System.out.println( "intArray = " + Printing.toString( begin, end ) );
  32.     System.out.println( "max = " + max.get() + " at index " + max.index() );
  33.     }
  34.   }
  35.