home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Permuting1.java < prev    next >
Text File  |  1998-05-08  |  1KB  |  38 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.  * Creating permutations of an JGL container and a native array of Objects.
  9.  *
  10.  * @see com.objectspace.jgl.algorithms.Permuting
  11.  * @version 3.0.0
  12.  * @author ObjectSpace, Inc.
  13.  */
  14.  
  15. public class Permuting1
  16.   {
  17.   public static void main( String[] args )
  18.     {
  19.     Array array = new Array();
  20.     array.add( new Integer( 0 ) );
  21.     array.add( new Integer( 2 ) );
  22.     array.add( new Integer( 5 ) );
  23.     do
  24.       {
  25.       System.out.println( "array = " + array );
  26.       }
  27.     while ( Permuting.nextPermutation( array, new LessNumber() ) );
  28.  
  29.     String[] strings = { "gnu", "emu", "dog" };
  30.     ObjectArray strArray = new ObjectArray( strings );
  31.     do
  32.       {
  33.       System.out.println( strArray );
  34.       }
  35.     while ( Permuting.prevPermutation( strArray, new LessString() ) );
  36.     }
  37.   }
  38.