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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.algorithms.*;
  4. import com.objectspace.jgl.util.*;
  5.  
  6. /**
  7.  * Rotating a JGL container, copy during rotate.
  8.  *
  9.  * @see com.objectspace.jgl.algorithms.Rotating
  10.  * @version 3.0.0
  11.  * @author ObjectSpace, Inc.
  12.  */
  13.  
  14. public class Rotating1
  15.   {
  16.   public static void main( String[] args )
  17.     {
  18.     Array array1 = new Array();
  19.     for ( int i = 0; i < 5; i++ )
  20.       array1.add( new Integer( i ) );
  21.     for ( int i = 0; i < array1.size(); i++ )
  22.       {
  23.       Array array2 = new Array( array1 );
  24.       ArrayIterator p = array2.begin();
  25.       p.advance( i );
  26.       Rotating.rotate( array2.begin(), p, array2.end() );
  27.       System.out.println( "Rotate around index " + i + ", " + array1 + " -> " + array2 );
  28.       }
  29.  
  30.     Deque d = new Deque();
  31.     ArrayIterator q = array1.begin();
  32.     q.advance( 1 );
  33.     Rotating.rotateCopy( array1.begin(), q, array1.end(), new InsertIterator( d ) );
  34.     System.out.println( "Rotate around index 2, " + array1 + " -> " + d );
  35.     }
  36.   }
  37.