Question

In: Computer Science

Write a pseudocode for the following: given that a path is a hamiltonian path, print all...

Write a pseudocode for the following: given that a path is a hamiltonian path, print all its edges.

Solutions

Expert Solution

1. Create 1D array of name path and size equal to the Number of Vertex

2. Assign -1 to all elements of array named Path

3.Let us put vertex 0 as the first vertex in the path.

    If there is a Hamiltonian Cycle, then the path can be

    started from any point of the cycle as the graph is undirected.

4. base case: If all vertices are

    included in Hamiltonian Cycle.

if (pos == V)

    {

        // And if there is an edge from the

        // last included vertex to the first vertex

        if (graph[path[pos - 1]][path[0]] == 1)

            return true;

        else

            return false;

    }

5. // Try different vertices as a next candidate

    // in Hamiltonian Cycle. We don't try for 0 as

    // we included 0 as starting point in hamCycle()

6.

for (int v = 1; v < V; v++)

    {

        /* Check if this vertex can be added

        // to Hamiltonian Cycle */

        if (isSafe(v, graph, path, pos))

        {

            path[pos] = v;

  

            /* recur to construct rest of the path */

            if (hamCycleUtil (graph, path, pos + 1) == true)

                return true;

  

            /* If adding vertex v doesn't lead to a solution,

            then remove it */

            path[pos] = -1;

        }

    }

  

    /* If no vertex can be added to

    Hamiltonian Cycle constructed so far,

    then return false */

    return false;

7. print the first vertex again to show the complete cycle

/* PROGRAM */

#include <iostream>

using namespace std;   

// Number of vertices in the graph

#define V 5

  

void printSolution(int path[]);

  

bool isSafe(int v, bool graph[V][V],

            int path[], int pos)

{

    /* Check if this vertex is an adjacent

    vertex of the previously added vertex. */

    if (graph [path[pos - 1]][ v ] == 0)

        return false;

  

    /* Check if the vertex has already been included.

    This step can be optimized by creating

    an array of size V */

    for (int i = 0; i < pos; i++)

        if (path[i] == v)

            return false;

  

    return true;

}

  

bool hamCycleUtil(bool graph[V][V],

                  int path[], int pos)

{

    /* base case: If all vertices are

    included in Hamiltonian Cycle */

    if (pos == V)

    {

        // And if there is an edge from the

        // last included vertex to the first vertex

        if (graph[path[pos - 1]][path[0]] == 1)

            return true;

        else

            return false;

    }

  

    // Try different vertices as a next candidate

    // in Hamiltonian Cycle. We don't try for 0 as

    // we included 0 as starting point in hamCycle()

    for (int v = 1; v < V; v++)

    {

        /* Check if this vertex can be added

        // to Hamiltonian Cycle */

        if (isSafe(v, graph, path, pos))

        {

            path[pos] = v;

  

            /* recur to construct rest of the path */

            if (hamCycleUtil (graph, path, pos + 1) == true)

                return true;

  

            /* If adding vertex v doesn't lead to a solution,

            then remove it */

            path[pos] = -1;

        }

    }

  

    /* If no vertex can be added to

    Hamiltonian Cycle constructed so far,

    then return false */

    return false;

}

  

bool hamCycle(bool graph[V][V])

{

    int *path = new int[V];

    for (int i = 0; i < V; i++)

        path[i] = -1;

      path[0] = 0;

    if (hamCycleUtil(graph, path, 1) == false )

    {

        cout << "\nSolution does not exist";

        return false;

    }

  

    printSolution(path);

    return true;

}

  

/* A utility function to print solution */

void printSolution(int path[])

{

    cout << "Solution Exists:"

            " Following is one Hamiltonian Cycle \n";

    for (int i = 0; i < V; i++)

        cout << path[i] << " ";

  

    // Let us print the first vertex again

    // to show the complete cycle

    cout << path[0] << " ";

    cout << endl;

}

  

// Driver Code

int main()

{

  bool graph1[V][V] = {{0, 1, 0, 1, 0},

                        {1, 0, 1, 1, 1},

                        {0, 1, 0, 0, 1},

                        {1, 1, 0, 0, 1},

                        {0, 1, 1, 1, 0}};

      

    // Print the solution

    hamCycle(graph1);

      

    bool graph2[V][V] = {{0, 1, 0, 1, 0},

                         {1, 0, 1, 1, 1},

                         {0, 1, 0, 0, 1},

                         {1, 1, 0, 0, 0},

                         {0, 1, 1, 0, 0}};

  

    // Print the solution

    hamCycle(graph2);

  

    return 0;

}

/* OUTPUT */

Solution Exists: Following is one Hamiltonian Cycle
 0  1  2  4  3  0

Solution does not exist

/* PLEASE UPVOTE */


Related Solutions

Using pseudocode or C++ code, write code to print “small” if the magnitude M of an...
Using pseudocode or C++ code, write code to print “small” if the magnitude M of an earthquake is in the range [0, 3), “medium” if M is in the range [3, 6), “large” if M is in the range [6, 9) and “epic” if M is greater than or equal to 9, where M is input by a user via the keyboard. (in c++)
write the pseudocode and code to solve the following: you are given a list. determine the...
write the pseudocode and code to solve the following: you are given a list. determine the sum of all the elements in the list without using the built in puthon function sum(). Take your code and create your own function and name it my_sum_algo() which will return the sum of numbers PS please write comments in the code for my understanding, and please write jn jn PYTHON 3 languge. Thank you, have a great day !
write pseudocode for the following problems not c code Pseudocode only Write a C program to...
write pseudocode for the following problems not c code Pseudocode only Write a C program to print all natural numbers from 1 to n. - using while loop Write a C program to print all natural numbers in reverse (from n to 1). - using while loop Write a C program to print all alphabets from a to z. - using while loop Write a C program to print all even numbers between 1 to 100. - using while loop...
Write out the full Hamiltonian for the Be atom.
Write out the full Hamiltonian for the Be atom.
What is the relation between path integral methods for dealing with constraints (constrained Hamiltonian dynamics involving...
What is the relation between path integral methods for dealing with constraints (constrained Hamiltonian dynamics involving non-singular Lagrangian) and Dirac's method of dealing with such systems (which involves the Dirac bracket)? And what is the advantage/relative significance of each method?
Fibonacci Write pseudocode to calculate F(n) Write pseudocode to construct a vector of the first n...
Fibonacci Write pseudocode to calculate F(n) Write pseudocode to construct a vector of the first n numbers in the Fibonacci sequence. Write a function: fibo(n = 1){ # Your code here } which takes one parameter ​n​ and returns the ​nth​ fibonacci number. Use the function you wrote to calculate the 58th Fibonacci number. Include your R code in your report The Fibonacci sequence (1, 1, 2, 3, 5, 8, 13, 21, 34, 55, ...) is defined as F(1) =...
Write pseudocode (3 Marks) and program structure (4 Marks) for the problem given below; In a...
Write pseudocode and program structure (4 Marks) for the problem given below; In a college, students are awarded a pass grade if their total mark is between 50-59, credit grade if the mark is between 60-69, distinction for marks between 70-79. High distinction if the mark is above or equal to 80 and fail if the mark is below 50.
Given the below pseudocode, write the proper code that implements it using MARIE's assembly language:               ...
Given the below pseudocode, write the proper code that implements it using MARIE's assembly language:                    Input a number and store it in X; if X > 1 then    Y := X + X;    X := 0; endif; Y := Y + 1; Output the value of Y; N.B: You should include the MARIE code in your Answer, with an explanation of each instruction in your code beside it. Example:              Subt One         /Subtract 1 from AC Add a...
Answer them please ASAP. Why would one choose the Hamiltonian Path and Satisfiability Problems in order...
Answer them please ASAP. Why would one choose the Hamiltonian Path and Satisfiability Problems in order to demonstrate the computational power of DNA computation?
Write a program that implements the A* algorithm to find a path from any two given...
Write a program that implements the A* algorithm to find a path from any two given nodes. You may use any of the following languages: C++, C#, Java, ActionScript. Problem Overview & Algorithm Description In a fully-observable environment where there are both pathable and blocked nodes, an agent must find a good path from their starting node to the goal node. The agent must use the A* algorithm to determine its path. For this program, you must use the Manhattan...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT