Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Write the following class to solve the traveling salesman problem. -n: int//numb

ID: 3574230 • Letter: W

Question

Write the following class to solve the traveling salesman problem. -n: int//number of elements x: int []//the array+Array()//Set n to 0 +Array(int n_in, int x_in[]) +pop: int//pop the last element from array+push: int[]//current (random) path +delete(int k): int//delete kth element and return it +insert(int k, int value)//insert value at element k + append(int dim, int more[]): void//append more[] to end +getN(): int +copy(int out[]): void//copy x[] to out[] + setRand(int n_in, int min, int max): void + randPerm(int n_in): void + getAve(): float getVariance(): float + sort(): void -swap(int^*a, int^*b) + getCountlnRange(int min, int max): int + getValues InRange (int min, int sax, int out [])

Explanation / Answer

#include<stdio.h>

#include<conio.h>

#include<iostream>

using namespace std;

int c = 0,cost = 999;

int graph[4][4] = { {0, 10, 15, 20},

                    {10, 0, 35, 25},

                    {15, 35, 0, 30},

                    {20, 25, 30, 0}

                  };

void swap (int *x, int *y)

{

    int temp;

    temp = *x;

    *x = *y;

    *y = temp;

}

void copy_array(int *a, int n)

{

    int i, sum = 0;

    for(i = 0; i <= n; i++)

    {

        sum += graph[a[i % 4]][a[(i + 1) % 4]];

    }

    if (cost > sum)

    {

        cost = sum;

    }

}

void permute(int *a, int i, int n)

{

   int j, k;

   if (i == n)

   {

        copy_array(a, n);

   }

   else

   {

        for (j = i; j <= n; j++)

        {

            swap((a + i), (a + j));
            permute(a, i + 1, n);

            swap((a + i), (a + j));

        }

    }

}

int main()

{

   int i, j;

   int a[] = {0, 1, 2, 3};

   permute(a, 0, 3);

cout<<"minimum cost:"<<cost<<endl;

   getch();
return(0);
}