Modify Listing, TestWeightedGraph.java, to create a file for representing graph1. The file format is described in Exercise.

Question:

Modify Listing, TestWeightedGraph.java, to create a file for representing graph1. The file format is described in Exercise. Create the file from the array defined in lines 7?24 in Listing. The number of vertices for the graph is 12, which will be stored in the first line of the file. An edge (u, v) is stored if u. The contents of the file should be as follows:

Listing

image

image

image

Write a program that reads a connected graph from a file and displays its minimum spanning tree. The first line in the file contains a number that indicates the number of vertices (n). The vertices are labeled as?0,?1, ...,?n-1. Each subsequent line describes the edges in the form of?u1, v1, w1 | u2, v2, w2 | .... Each triplet in this form describes an edge and its weight. Figure shows an example of the file for the corresponding graph. Note that we assume the graph is undirected. If the graph has an edge (u,?v), it also has an edge (v,?u). Only one edge is represented in the file. When you construct a graph, both edges need to be added. Your program should prompt the user to enter the name of the file, read data from the file, create an instance?g?of?WeightedGraph, invoke?g.printWeightedEdges()?to display all edges, invoke?getMinimumSpanningTree()?to obtain an instance?tree?of?WeightedGraph.MST, invoke?tree.getTotalWeight()?to display the weight of the minimum spanning tree, and invoke?tree.printTree()?to display the tree. Here is a sample run of the program:

image

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: