Here you can find the source of shuffleArray(int[] ar)
public static void shuffleArray(int[] ar)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static void shuffleArray(int[] ar) { Random rnd = new Random(); for (int i = ar.length - 1; i > 0; i--) { int index = rnd.nextInt(i + 1); // Simple swap int a = ar[index]; ar[index] = ar[i];//from w w w . j a va 2 s.c om ar[i] = a; } } public static <T> void shuffleArray(T[] ar) { Random rnd = new Random(); for (int i = ar.length - 1; i > 0; i--) { int index = rnd.nextInt(i + 1); // Simple swap T a = ar[index]; ar[index] = ar[i]; ar[i] = a; } } }