Your preferences have been saved!
» clone two dimensional array - /**  * @author Tao Jin  *   */ public class Util{      // clone two dimensional array   public static boolean[][] twoDimensionalArrayClone(boolean[][] a) {     boolean[][] b = new boolean[a.length][];     for (int i = 0; i < a.length; i++) {... 17 Feb 12 » Array Util - //package net.javlov.util; public class ArrayUtil {      public static String arrayToString( double[] d) {     String s = "";     for ( int i = 0; i < d.length; i++ )       s += d[i] + " ";     return s;   }   ... 17 Feb 12 » ArrayUtils provides static methods for manipulating arrays when using a - //package prisms.util; import java.lang.reflect.Array; /**  * ArrayUtils provides some static methods for manipulating arrays easily when  * using a tool such as {@link java.util.ArrayList} is inconvenient.  */ final class ArrayUtils {   /**    * Gets the first element in the given array for which the    * {@link EqualsChecker#equals(Object, Object)} returns true, or null if... 17 Feb 12 » Set of utilities used to manipulate arrays. - //package taskblocks.utils; import java.lang.reflect.Array; /**  * Set of utilities used to manipulate arrays.  *   * @author j.neubauer  * @since 11.1.2007  */ public class ArrayUtils {   ... 17 Feb 12 » Palidrome Array - //package org.eoti.math; import java.math.BigInteger; import java.util.Iterator; import java.util.concurrent.ConcurrentHashMap; public class PalidromeArray   implements Iterable<BigInteger> {   protected static final BigInteger TWO = BigInteger.valueOf(2);   protected ConcurrentHashMap<BigInteger,BigInteger> array;   protected BigInteger totalLength, halfLength;... 17 Feb 12 » A class to iterate over all permutations of an array. - */ public class Permutations<T> {     private T[] in;     private T[] out;     private int n, m;     private int[] index;     private boolean hasNext = true;     private Permutations(T[] in, T[] out, int m) {         this.n = in.length;         this.m = m;... 17 Feb 12 » Sums an array of numbers log(x1)...log(xn) - /**  *   *   * @author <a href="mailto:casutton@cs.umass.edu">Charles Sutton</a>  * @version $Id: ArrayUtils.java,v 1.1 2007/10/22 21:37:40 mccallum Exp $  */ public class Util {     private static final double LOGTOLERANCE = 30.0;     /**      * Sums an array of numbers log(x1)...log(xn).  This saves some of... 17 Feb 12 » Sum all elements in the array - */ public final class ArrayUtils {    /**      * Private constructor since this class cannot be instantiated     */    private ArrayUtils(    )    {       // Do nothing... 17 Feb 12 » Reinitializes an int array - /**  * This class contains a colleaction of utility static methods for arrays.  * */ public class ArrayUtil {     /** The maximum array size to do element by element copying, larger      * arrays are copyied in a n optimized way. */     public static final int MAX_EL_COPYING = 8;     /** The number of elements to copy initially in an optimized array copy */     public static final int INIT_EL_COPYING = 4;     /**... 17 Feb 12 » Reinitializes a byte array - /**  * This class contains a colleaction of utility static methods for arrays.  * */ public class ArrayUtil {     /** The maximum array size to do element by element copying, larger      * arrays are copyied in a n optimized way. */     public static final int MAX_EL_COPYING = 8;     /** The number of elements to copy initially in an optimized array copy */     public static final int INIT_EL_COPYING = 4;     /**... 17 Feb 12