Reverse an array : Array « Date Type « Android






Reverse an array

  
//package org.anddev.andengine.util;

/**
 * (c) 2010 Nicolas Gramlich 
 * (c) 2011 Zynga Inc.
 * 
 * @author Nicolas Gramlich
 * @since 22:35:42 - 01.05.2011
 */
class ArrayUtils {

  public static void reverse(final byte[] pArray) {
    if (pArray == null) {
      return;
    }
    int i = 0;
    int j = pArray.length - 1;
    byte tmp;
    while (j > i) {
      tmp = pArray[j];
      pArray[j] = pArray[i];
      pArray[i] = tmp;
      j--;
      i++;
    }
  }

  public static void reverse(final short[] pArray) {
    if (pArray == null) {
      return;
    }
    int i = 0;
    int j = pArray.length - 1;
    short tmp;
    while (j > i) {
      tmp = pArray[j];
      pArray[j] = pArray[i];
      pArray[i] = tmp;
      j--;
      i++;
    }
  }

  public static void reverse(final int[] pArray) {
    if (pArray == null) {
      return;
    }
    int i = 0;
    int j = pArray.length - 1;
    int tmp;
    while (j > i) {
      tmp = pArray[j];
      pArray[j] = pArray[i];
      pArray[i] = tmp;
      j--;
      i++;
    }
  }

  public static void reverse(final long[] pArray) {
    if (pArray == null) {
      return;
    }
    int i = 0;
    int j = pArray.length - 1;
    long tmp;
    while (j > i) {
      tmp = pArray[j];
      pArray[j] = pArray[i];
      pArray[i] = tmp;
      j--;
      i++;
    }
  }

  public static void reverse(final float[] pArray) {
    if (pArray == null) {
      return;
    }
    int i = 0;
    int j = pArray.length - 1;
    float tmp;
    while (j > i) {
      tmp = pArray[j];
      pArray[j] = pArray[i];
      pArray[i] = tmp;
      j--;
      i++;
    }
  }

  public static void reverse(final double[] pArray) {
    if (pArray == null) {
      return;
    }
    int i = 0;
    int j = pArray.length - 1;
    double tmp;
    while (j > i) {
      tmp = pArray[j];
      pArray[j] = pArray[i];
      pArray[i] = tmp;
      j--;
      i++;
    }
  }

  public static void reverse(final Object[] pArray) {
    if (pArray == null) {
      return;
    }
    int i = 0;
    int j = pArray.length - 1;
    Object tmp;
    while (j > i) {
      tmp = pArray[j];
      pArray[j] = pArray[i];
      pArray[i] = tmp;
      j--;
      i++;
    }
  }
  
  public static boolean equals(final byte[] pArrayA, final int pOffsetA, final byte[] pArrayB, final int pOffsetB, final int pLength) {
    final int lastIndexA = pOffsetA + pLength;
    if(lastIndexA > pArrayA.length) {
      throw new ArrayIndexOutOfBoundsException(pArrayA.length);
    }
    
    final int lastIndexB = pOffsetB + pLength;
    if(lastIndexB > pArrayB.length) {
      throw new ArrayIndexOutOfBoundsException(pArrayB.length);
    }
    
    for(int a = pOffsetA, b = pOffsetB; a < lastIndexA; a++, b++) {
      if(pArrayA[a] != pArrayB[b]) {
        return false;
      }
    }
    
    return true;
  }

}

   
    
  








Related examples in the same category

1.Load string array value from strings.xml
2.Returns a clone of the specified array.
3.Tests two arrays for equality.
4.Transforms a list of Float values into an array of float.
5.Split the string into an array of strings using one of the separator in 'sep'.
6.Int array to HashSet
7.Array Iterator
8.Convert an array of floats to 16.16 fixed-point
9.Convert an array of 16.16 fixed-point values to floating point
10.Using android.util.SparseArray
11.Join an array of Strings together.
12.Compare Arrays
13.Does Array contain a certain item
14.Create Array with Unique Value
15.Resize a Java array
16.Get Node value and save to ArrayList
17.read the photo file into a byte array
18.byte Array To Int
19.load 16 Bit PCM Raw Data File As Double Array
20.convert From Short Array To Double Array
21.convert From Double Array To Short Array
22.get Set From Array
23.Convert an array of floats to 16.16 fixed-point 2
24.int To Byte Array 4
25.Convert a byte array to a boolean array. Bit 0 is represented with false, Bit 1 is represented with 1
26.Return a subarray of the byte array in parameter.