Here you can find the source of swap(int[] arr, int i, int j)
public static void swap(int[] arr, int i, int j)
//package com.java2s; //License from project: Apache License public class Main { public static void swap(int[] arr, int i, int j) { int temp = arr[i]; arr[i] = arr[j];//from w w w.j a v a2s. c o m arr[j] = temp; } }