Starting from:

$29

Assignment 3 Implement Kruskal’s algorithm

1 Programming Assignment
The assignment is to implement Kruskal’s algorithm to find a minimum weight spanning tree of an
edge-weighted graph. A Java template has been provided containing an empty method MWST, which
takes a single argument consisting of a weighted adjacency matrix for an edge-weighted graph �. The
expected behavior of the method is as follows:
Input: An � × � array � representing an edge-weighted graph.
Output: An integer value corresponding to the total weight of a minimum weight spanning tree
of �.
A correct implementation of the MWST function will use Kruskal’s algorithm to find a minimum weight
spanning tree, then sum the weights of each selected edge to produce the return value. For example,
consider the edge-weighted graph below.
The darkened edges of the graph form a minimum weight spanning tree, and the total weight is 35.
You must use the provided Java template as the basis of your submission, and put your implementation
inside the MWST method in the template. You may not change the name, return type or parameters of
the MWST method. You may add additional methods as needed. The main method in the template
contains code to help you test your implementation by entering test data or reading it from a file. You
may modify the main method to help with testing, but only the contents of the MWST method (and any
methods you have added) will be marked, since the main function will be deleted before marking begins.
Please read through the comments in the template file before starting.
3
6
5
4
10
7
9
8
11
1
12
13 22
2 Input Format
The testing code in the main function of the template reads a sequence of graphs in a weighted adjacency
matrix format and uses the MWST function to compute the weight of a minimum weight spanning tree
for each. A weighted adjacency matrix � for an edge-weighted graph � on � vertices is an � × � matrix
where entry (�, �) gives the weight of the edge between vertices � and � (or 0 if no edge exists). For
example, the matrix
� =
[
0 0 0 0 0 12 13 0
0 0 6 0 0 0 0 3
0 6 0 4 0 0 0 5
0 0 4 0 10 0 0 7
0 0 0 10 0 11 8 9
12 0 0 0 11 0 1 0
13 0 0 0 8 1 0 2
0 3 5 7 9 0 2 0]
corresponds to the edge-weighted graph below. Note that the weighted adjacency matrix for an
undirected graph is always symmetric.
The input format used by the testing code in main consists of the number of vertices � followed by the
� × � weighted adjacency matrix. The graph above would be specified as follows:
8
0 0 0 0 0 12 13 0
0 0 6 0 0 0 0 3
0 6 0 4 0 0 0 5
0 0 4 0 10 0 0 7
0 0 0 10 0 11 8 9
12 0 0 0 11 0 1 0
13 0 0 0 8 1 0 2
0 3 5 7 9 0 2 0
1 2
3
7
6
0
5 4
3
6
5
4
10
7
9
8
11
1
12
13 23
3 Test Datasets
A collection of randomly generated edge-weighted graphs has been uploaded to conneX. Your
assignment will be tested on graphs similar but not identical to the uploaded graphs. You are encouraged
to create your own test inputs to ensure that your implementation functions correctly in all cases.
4 Sample Run
The output of a model solution on the graph above is given in the listing below. Console input is shown
in blue.
Reading input values from stdin.
Reading graph 1
8
0 0 0 0 0 12 13 0
0 0 6 0 0 0 0 3
0 6 0 4 0 0 0 5
0 0 4 0 10 0 0 7
0 0 0 10 0 11 8 9
12 0 0 0 11 0 1 0
13 0 0 0 8 1 0 2
0 3 5 7 9 0 2 0
Graph 1: Total weight is 35
Processed 1 graph.
Average Time (seconds): 0.00
5 Evaluation Criteria
The programming assignment will be marked out of 25, based on a combination of automated testing
and human inspection. To receive full marks, the running time of the implemented algorithm should be
at most �(�2 + � log �) on a graph � with � vertices and � edges.
Score (/50) Description
0 − 5 Submission does not compile or does not conform to the
provided template.
5 − 15 The implemented algorithm is not Kruskal’s algorithm or
is substantially inaccurate on the tested inputs.
15 − 20 The implemented algorithm is accurate on all tested
inputs.
20 − 25 The implemented algorithm is accurate on all tested
inputs and has a �(�2 + � log �) running time.
To be properly tested, every submission must compile correctly as submitted, and must be based on the
provided template. You may only submit one source file. If your submission does not compile for any
reason (even trivial mistakes like typos), or was not based on the template, it will receive at most
5 out of 25. The best way to make sure your submission is correct is to download it from conneX after4
submitting and test it.

More products