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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.algorithms.*;
  4.  
  5. /**
  6.  * Shuffling a JGL container.
  7.  *
  8.  * @see com.objectspace.jgl.algorithms.Shuffling
  9.  * @version 3.0.0
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class Shuffling1
  14.   {
  15.   public static void main( String[] args )
  16.     {
  17.     Array array = new Array();
  18.     for ( int i = 0; i < 10; i++ )
  19.       array.add( new Integer( i ) );
  20.     System.out.println( "array = " + array );
  21.     Shuffling.randomShuffle( array );
  22.     System.out.println( "after shuffle = " + array );
  23.     }
  24.   }
  25.