Here you can find the source of swap(Comparable[] a, int oldIndex, int newIndex)
public static void swap(Comparable[] a, int oldIndex, int newIndex)
//package com.java2s; //License from project: Open Source License public class Main { public static void swap(Comparable[] a, int oldIndex, int newIndex) { Comparable t = a[oldIndex]; a[oldIndex] = a[newIndex];/* www . j a v a 2s.c o m*/ a[newIndex] = t; } }