Here you can find the source of swap(final int[] array, final int indexA, final int indexB)
public static void swap(final int[] array, final int indexA, final int indexB)
//package com.java2s; //License from project: Apache License public class Main { public static void swap(final int[] array, final int indexA, final int indexB) { int t = array[indexA]; array[indexA] = array[indexB];/* w w w . ja va 2s . c o m*/ array[indexB] = t; } }