Question

In: Computer Science

You will implement two algorithms to find the shortest path in a graph. def prim(G,start_node): Takes...

You will implement two algorithms to find the shortest path in a graph.

def prim(G,start_node): Takes a graph G and node to start at. Prims edges used in MST.

def kruskal(G): Takes a graph G and prints the edges in the MST in order found.

You may represent the graphs as adjacency matrix or list. You MAY NOT include any graph libraries.

The graph you are working on will be give in a file with the following format. The graph is undirected. That means if an edge from 2 to 1 is in the file, it may be used in both directions.

  • Line 1: The number of Nodes in the Graph
  • Lines 2-EOF: Every other line in the file contains an edge
    • First Value is the first node
    • Second Value is the second node
    • Third Value is the weight of the edge

Note: You should store the weights as floats.

The program will have a text interface. First ask for the file name of the graph to work with. Then implement 4 text commands.

prim x - Runs Pim's Algorithm starting at node X. X must be an integer

kruskal - Runs Kruskal's algorithm

help - prints this list of commands

exit - Exits the program

On a bad command print out "Unknown Command"

You must implement this using only standard python3 libraries. You may not use any outside libraries. For example, open source graph libraries.

When printing an edge, always print the smaller vertex first then the larger vertex.

Example Execution Traces are provided below.

Welcome to Minimum Spanning Tree Finder

Give the file name graph is in:

input1.txt

Commands:

exit or ctrl-d - quits the program

help - prints this menu

prim integer_value - run's Prim's algorithm starting at node given

kruskal - runs Kruskal's algorithm

Enter command:

Bad Command Unknown Command

Enter command:

help

Commands:

exit or ctrl-d - quits the program

help - prints this menu

prim integer_value - run's Prim's algorithm starting at node given

kruskal - runs Kruskal's algorithm

Enter command:

prim 0

Running Prim's Algorithm Starting Node: 0

Added 2

Using Edge [0, 2, 1.0]

Added 5

Using Edge [2, 5, 4.0]

Added 3

Using Edge [3, 5, 2.0]

Added 1

Using Edge [1, 2, 7.0]

Added 4

Using Edge [1, 4, 3.0]

Enter command:

exit

Bye

The content of the files is shown below.

input1.txt

6
0 3 5
3 5 2
5 4 10
4 1 3
1 0 8
0 2 1
2 3 6
2 5 4
2 4 9
2 1 7

input2.txt

9
0 1 4
0 7 10
1 7 13
7 8 9
7 6 1
1 2 8
8 2 3
8 6 6
2 3 7
2 5 5
6 5 2
3 5 14
3 4 11
5 4 12

input3.txt

8
4 5 35
4 7 37
5 7 28
0 7 16
1 5 32
0 4 38
2 3 17
1 7 19
0 2 26
1 2 36
1 3 29
2 7 34
6 2 40
3 6 52
6 0 58
6 4 93

Solutions

Expert Solution

python code

solution

//output

//copyable code

#declare the variable data and debug_value

data = False

debug_value = False

# Global variables

D_istinct_Nodes = None

Graph_Nodes = [[None]]

#function prim algorithm

def prim(Graph_Nodes, start_node):

    G1 = Graph_Nodes

    global D_istinct_Nodes

    D_istancevalue = [float("inf") for k in range(0, len(G1))]

    D_istancevalue[start_node] = 0

    d_Nodes = D_istinct_Nodes

    d_Nodes.remove(start_node)

    number_nodes = len(d_Nodes);

    lastNode = start_node

    #check the condition if weight node is less than zero

    while len(d_Nodes) > 0:

        small_valueWeight = float("inf")

        new_Node = -1

        small_Inode = -1

        small_Jnode = -1

        #calculate the distance

        for i1 in range(0, len(G1)):

            for j1 in range(0, len(G1)):

                if i1 not in d_Nodes or j1 in d_Nodes:

                    continue

                if G1[j1][i1] < small_valueWeight:

                    small_valueWeight = G1[j1][i1]

                    new_Node = i1

                    small_valueI = j1

                    small_valueJ = i1

                if G1[i1][j1] < small_valueWeight:

                    small_valueWeight = G1[i1][j1]

                    new_Node = i1

                    small_valueI = i1

                    small_valueJ = j1

        if small_valueWeight == float("inf"):

            break

        G1[small_valueI][small_valueJ] = float("inf")

        G1[small_valueJ][small_valueI] = float("inf")

        print("Added " + str(new_Node))

        print("Using Edge [" + str(small_valueI) + "," + str(small_valueJ) + "," + str(small_valueWeight) + "]")

        d_Nodes.remove(new_Node)

        lastNode = small_valueI

#kruskal algorithm

def kruskal(Graph_Nodes):

    G = Graph_Nodes

    global D_istinct_Nodes

    #calulate the distance nodes

    D_istancevalue = [float("inf") for i1 in range(0, len(G))]

    d_Nodes = D_istinct_Nodes

    number_nodes = len(d_Nodes);

    Distinct_Edges = None

    while len(d_Nodes) > 0:

        small_valueWeight = float("inf")

        new_Node = -1

        small_Inode = -1

        small_Jnode = -1

        #check the weight nodes

        for i1 in range(0, number_nodes):

            for j1 in range(0, number_nodes):

                if j1 not in d_Nodes and i1 not in d_Nodes:

                    continue

                if G[j1][i1] < small_valueWeight:

                    small_valueWeight = G[j1][i1]

                    new_Node = i1

                    small_valueI = j1

                    small_valueJ = i1

                if G[i1][j1] < small_valueWeight:

                    small_valueWeight = G[i1][j1]

                    new_Node = i1

                    small_valueI = i1

                    small_valueJ = j1

        if small_valueWeight == float("inf"):

            break

        G[small_valueI][small_valueJ] = float("inf")

        G[small_valueJ][small_valueI] = float("inf")

        if Distinct_Edges is None or not (small_valueI in Distinct_Edges[0] and small_valueJ in Distinct_Edges[0]):

            print("Select Edge [" + str(small_valueI) + "," + str(small_valueJ) + "," + str(small_valueWeight) + "]")

        if Distinct_Edges is None:

            Distinct_Edges = [[small_valueI, small_valueJ]]

        else:

            Distinct_Edges.append([small_valueI, small_valueJ])

        last_Index = len(Distinct_Edges) - 1

        for i1 in range(len(Distinct_Edges) - 1, 0, -1):

            if (small_valueI in Distinct_Edges[i1 - 1] or small_valueJ in Distinct_Edges[i1 - 1]) and (

                    small_valueI in Distinct_Edges[last_Index] or small_valueJ in Distinct_Edges[last_Index]):

                for node in Distinct_Edges[last_Index]:

                    Distinct_Edges[i1 - 1].append(node)

               

                Distinct_Edges.remove(Distinct_Edges[last_Index])

                last_Index = i1 - 1

        count = 0

        for i1 in range(0, number_nodes):

            if i1 in Distinct_Edges[0]:

                count += 1

               

        if len(Distinct_Edges) == 1 and count >= number_nodes:

            break

#dijstra algorithm          

def Dijkstra(G, start_node):

    global D_istinct_Nodes

    D_istancevalue = [float("inf") for i1 in range(0, len(G))]

    prev = [None for i1 in range(0, len(G))]

    D_istancevalue[start_node] = float(0)

    d_Nodes = D_istinct_Nodes

    while len(d_Nodes) > 0:

        small_value = [-1, -1, float("inf")]

        for i1 in range(0, len(d_Nodes)):

            for j1 in range(0, len(d_Nodes)):

                D_i = d_Nodes[i1]

                Dj = d_Nodes[j1]

                if G[D_i][Dj] < small_value[2]:

                    small_value = [D_i, Dj, float(G[D_i][Dj])]

        smallNode = small_value[0]

        if smallNode < 0:

            break

        d_Nodes.remove(smallNode)

        for j1 in range(0, len(G)):

            # if G[i][j] != float("inf"):

            alt = float(D_istancevalue[smallNode] + G[smallNode][j1])

            if alt < D_istancevalue[j1]:

                D_istancevalue[j1] = alt

                prev[j1] = smallNode

    return D_istancevalue

#floyd algorithm

def floyd(inG):

    G = inG

    for i1 in range(0, len(G)):

        G[i1][i1] = float(0)

    for i1 in range(0, len(G)):

        for j1 in range(0, len(G)):

            for k1 in range(0, len(G)):

                if G[i1][j1] > (G[i1][k1] + G[k1][j1]):

                    G[i1][j1] = G[i1][k1] + G[k1][j1]

    return G

#help command

def print_Help():

  

    print(

        "Commands: \n exit or ctrl-d - quit the program\n help - prints this menu\nprim integer_value - run's Prim's algorithm starting at node given\nkruskal - runs Kruskal's algorithm")

#make graph node generated

def makeGraph_Nodes(in_fileName):

    try:

        in_file = open(in_fileName, 'r')

    except IOError:

        print("Invalid file...\n")

        exit(-1)

    else:

        global Graph_Nodes

        global D_istinct_Nodes

        number_nodes = int(in_file.readline())

        Graph_Nodes = [[float("inf") for i1 in range(0, number_nodes)] for j1 in range(0, number_nodes)]

        D_istinct_Nodes = [i1 for i1 in range(0, number_nodes)]

        line1 = in_file.readline()

        while line1 != "":

            fields = line1.split(" ", line1.count(" "))

            Graph_Nodes[int(fields[0])][int(fields[1])] = float(fields[2])

            line1 = in_file.readline()

    in_file.close()

#display the nodes

def printGraph_Nodes():

    number_nodes = len(Graph_Nodes)

    for i in range(0, number_nodes):

        for j in range(0, number_nodes):

            print(i, j, Graph_Nodes[i][j])

#print the output part

print("Welcome to Minimum Spanning Tree ")

in_fileName = ""

if debug_value:

    #input file

    in_fileName = "input1.txt"

else:

    if data:

        in_fileName = input("Give the filename Graph_Nodes is in: ")

    else:

        in_fileName = input("Give the filename Graph_Nodes is in: ")

makeGraph_Nodes(in_fileName)

if debug_value:

    printGraph_Nodes()

print_Help()

while True:

    makeGraph_Nodes(in_fileName)

    in_Command = ""

    if data:

        in_Command = input("please Enter command: ")

    else:

        in_Command = input("please Enter command: ")

    if in_Command == "exit":

        print("Bye")

        break

    elif in_Command.find("floyd") != -1:

        makeGraph_Nodes(in_fileName)

        D_istancevalues = floyd(Graph_Nodes)

        for i in range(0, len(D_istancevalues)):

            print(D_istancevalues[i])

        if debug_value:

            print("Floyd")

   elif in_Command.find("Dijkstra") != -1:

        param = int(in_Command.split(" ", 2)[1])

        output = Dijkstra(Graph_Nodes, param)

        print(output)

        if debug_value:

            print("Dijkstra");

    elif in_Command.find("prim") != -1:

        param = int(in_Command.split(" ", 2)[1])

        prim(Graph_Nodes, param)

    elif in_Command.find("kruskal") != -1:

        print("Kruskal's Algorithm")

        kruskal(Graph_Nodes)

    elif in_Command == "help":

        print_Help()

    elif in_Command == "pg":

     printGraph_Nodes()


Related Solutions

Algorithm questions. 1.When choosing an algorithm for the shortest path between two nodes in an unweighted...
Algorithm questions. 1.When choosing an algorithm for the shortest path between two nodes in an unweighted graph, should we use Breadth First Search or Depth First Search ? 2. When choosing a data structure to store a graph for an algorithm, how should we store the graph knowing that the graph is dense and this algorithm needs to determine many times if two nodes are directly connected ? Should it be an Adjacency Matrix or an Adjacency List ?
Experiments are done to find out how long it takes rabbits to find their path through...
Experiments are done to find out how long it takes rabbits to find their path through a maze. Mean time u=18 seconds is completion time for a maze. A scientist suggests that carrots will cause the rabbits to complete the maze faster. Experiments are done on 4 rabbits with carrots as a stimulus and the time in seconds are recorded 15,15,16,17 1.State the ho and ha 2.assume that the distribution of times is normal, do these experiment results support the...
Use quickselect algorithm to implement the two algorithms for finding the kth smallest integer in a...
Use quickselect algorithm to implement the two algorithms for finding the kth smallest integer in a set of integers. MUST USE JAVA AND QUICKSELECT. Algorithm 1: Procedure SELECT( k,S) { if ISI =1 then return the single element in S    else { choose an element randomly from S;               let S1, S2, and S3 be the sequences of elements in S                 less than, equal to, and greater than m, respectively;              if IS1I >=k then return SELECT(k,S1)              ...
Provide and implement three completely different algorithms of different running time that will check if two...
Provide and implement three completely different algorithms of different running time that will check if two strings are anagrams.
Write a program to compare those two searching algorithms and also compare two sorting algorithms. You...
Write a program to compare those two searching algorithms and also compare two sorting algorithms. You need to modify those codes in the book/slides to have some counters to count the number of comparisons and number of swaps. In the main function, you should have an ordered array of 120 integers in order to test searching algorithms, and the other two identical arrays of 120integers not in order to test sorting algorithms. Display all counters in the main functions. Counter...
In this project you will implement and experiment with three different sorting algorithms: Insertion Sort, Selection...
In this project you will implement and experiment with three different sorting algorithms: Insertion Sort, Selection sort and Bubble Sort. The objective of this project is to understand the relation between the theoretical asymptotic complexities (Big-O) computed in class and the actual running times for different kinds of input. The enclosed source file main.cpp contains a program that reads two inputs: a letter specifying which sorting algorithm to use (I for InsertionSort , S for SelectionSort and B for BubbleSort),...
Implement two functions in C language: stringLength() - Takes a pointer to a string, and a...
Implement two functions in C language: stringLength() - Takes a pointer to a string, and a pointer to an int variable. It computes the length of the string and updates the int variable with the length. stringCopy() - Copies one string onto another using pointers #include<stdio.h> #define MAX_STR_LEN 2048 void stringLength(char *str, int *len) { // This function computes the length of the string // at the address in the pointer *str. Once the length // has been determined, it...
In Java For this assignment you will implement two methods, find() and replace() relating to Binary...
In Java For this assignment you will implement two methods, find() and replace() relating to Binary Search Trees. These methods are both to be recursive functions. The signatures for those functions must be: /* This method takes a tree node and a key as an argument and returns the tree node if the key is found and returns null if the key is not found. */ BST find(BST T, char key) /* This method takes a tree node and a...
Write two algorithms to find both the smallest and largest numbers in a list of n...
Write two algorithms to find both the smallest and largest numbers in a list of n numbers. In first algorithm, you simply write one loop to find the minimum and maximum. So there will be 2(n - 1) comparisons. In second algorithm, you try to find a method that does at most 1.5n comparisons of array items. Determine the largest list size (i.e., n) that Algorithm 1 can process and still compute the answer within 60 seconds. Report how long...
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