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

  1. // Copyright(c) 1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.adapters.*;
  4. import com.objectspace.jgl.algorithms.*;
  5.  
  6. /**
  7.  * Calculate and sum the difference between adjacent pairs of values.
  8.  *
  9.  * @see com.objectspace.jgl.algorithms.Counting
  10.  * @version 3.0.0
  11.  * @author ObjectSpace, Inc.
  12.  */
  13.  
  14. public class Counting3
  15.   {
  16.   public static void main( String[] args )
  17.     {
  18.     // create sample array
  19.     int intArray[] = { 1, 2, 4, 8, 16 };
  20.     IntIterator begin = IntIterator.begin( intArray );
  21.     IntIterator end = IntIterator.end( intArray );
  22.     Printing.println( begin, end );
  23.  
  24.     // make sure destination hase enough space allocated
  25.     Array array = new Array( 5 );
  26.  
  27.     Counting.adjacentDifference( begin, end, array.start() );
  28.     Printing.println( array );
  29.     }
  30.   }
  31.