Java Array Swap swap2(double v[], int v2[], int i, int j)

Here you can find the source of swap2(double v[], int v2[], int i, int j)

Description

swap

License

Open Source License

Declaration

static void swap2(double v[], int v2[], int i, int j) 

Method Source Code

//package com.java2s;
/***************************************************************************
 * Program's name: acotsp/* ww w .  j  a v a 2 s  .co m*/
 * 
 * Ant Colony Optimization algorithms (AS, ACS, EAS, RAS, MMAS, BWAS) for the
 * symmetric TSP
 * 
 * Copyright (C) 2004 Thomas Stuetzle
 * 
 * This program 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 2 of the License, or
 * (at your option) any later version.
 * 
 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 * 
 * email: stuetzle no@spam informatik.tu-darmstadt.de
 * mail address: Universitaet Darmstadt
 * Fachbereich Informatik
 * Hochschulstr. 10
 * D-64283 Darmstadt
 * Germany
 ***************************************************************************/

public class Main {
    static void swap2(double v[], int v2[], int i, int j) {
        double tmp1;
        int tmp2;

        tmp1 = v[i];
        v[i] = v[j];
        v[j] = tmp1;

        tmp2 = v2[i];
        v2[i] = v2[j];
        v2[j] = tmp2;
    }
}

Related

  1. swap(T[] array, int i, int len)
  2. swap(T[] array, int indexOne, int indexTwo)
  3. swap(T[] data, int a, int b)
  4. swap(T[] elements, int i, int j)
  5. swap(T[] ts, int i, int j)
  6. swap2Bytes(byte[] bytes, int offset)
  7. swap3(String[] a, int x, int y, int z)
  8. swapAll(final Object[] array)
  9. swapAndPrint(int[] arr, int m, int n)