Here you can find the source of swap(short x[], int a, int b)
private static void swap(short x[], int a, int b)
//package com.java2s; /*// ww w.jav a2 s .co m * Redberry: symbolic tensor computations. * * Copyright (c) 2010-2013: * Stanislav Poslavsky <stvlpos@mail.ru> * Bolotin Dmitriy <bolotin.dmitriy@gmail.com> * * This file is part of Redberry. * * Redberry is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Redberry is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Redberry. If not, see <http://www.gnu.org/licenses/>. */ public class Main { private static void swap(int x[], int a, int b, int[] coSort) { swap(x, a, b); swap(coSort, a, b); } /** * Swaps x[a] with x[b]. */ private static void swap(int x[], int a, int b) { int t = x[a]; x[a] = x[b]; x[b] = t; } private static void swap(int x[], int a, int b, long[] coSort) { swap(x, a, b); swap(coSort, a, b); } /** * Swaps x[a] with x[b]. */ private static void swap(long x[], int a, int b) { long t = x[a]; x[a] = x[b]; x[b] = t; } private static void swap(Object[] x, int a, int b, Object[] coSort) { swap(x, a, b); swap(coSort, a, b); } /** * Swaps x[a] with x[b]. */ private static void swap(Object[] x, int a, int b) { Object t = x[a]; x[a] = x[b]; x[b] = t; } private static void swap(int x[], int a, int b, Object[] coSort) { swap(x, a, b); swap(coSort, a, b); } private static void swap(short x[], int a, int b, int[] coSort) { swap(x, a, b); swap(coSort, a, b); } /** * Swaps x[a] with x[b]. */ private static void swap(short x[], int a, int b) { short t = x[a]; x[a] = x[b]; x[b] = t; } }