JavaScript Coding Test Course, Minimum Spanning Tree

Coding tests are a great way to evaluate programming skills. Today, we will look at how to solve the Minimum Spanning Tree (MST) problem.
This problem is applicable in various fields, especially in problems related to computer networks.
There are several algorithms to construct a minimum spanning tree, but particularly Kruskal’s Algorithm and Prim’s Algorithm are widely used.

Problem Description

Let’s solve the problem of finding a minimum spanning tree given the edges that represent the graph below.
Each edge is assigned a weight, and we need to find a connected graph where the total weight is minimized.

Problem Definition

    Input:
        [(1, 2, 4), (1, 3, 1), (2, 3, 2), (2, 4, 5), (3, 4, 8), (1, 4, 3)]
    Output:
        List of edges in the minimum spanning tree: [(1, 3, 1), (2, 3, 2), (1, 4, 3), (2, 4, 5)]
        Sum of minimum weights: 11

Problem Solving Process

Step 1: Understanding Graph Data Structure

A graph consists of vertices (nodes) and edges.
Here, edges are provided in the form of tuples as `(start vertex, end vertex, weight)`.
We need to construct the graph using this data.

Step 2: Sorting Edges

Kruskal’s Algorithm first sorts the edges based on their weights.
We sort the given list of edges in ascending order to be able to select the edges with the minimum weights.

Step 3: Cycle Detection Using Union-Find Structure

To check whether a cycle occurs when adding edges, we use the Union-Find data structure.
This data structure has two main functions:

  • Find: Find which set a specific element belongs to
  • Union: Merge the sets that two elements belong to

If no cycle occurs, we select the edge; otherwise, we ignore the edge.
We define the basic Union-Find class and its methods required to implement the algorithm.

Step 4: Implementing MST

Now we will combine the implementations of all steps to ultimately find the MST.
Below is an example of the Kruskal’s algorithm implemented in JavaScript.

    class UnionFind {
        constructor(size) {
            this.parent = Array.from({length: size}, (_, index) => index);
            this.rank = Array(size).fill(1);
        }

        find(node) {
            if (this.parent[node] !== node) {
                this.parent[node] = this.find(this.parent[node]);
            }
            return this.parent[node];
        }

        union(node1, node2) {
            const root1 = this.find(node1);
            const root2 = this.find(node2);
            if (root1 !== root2) {
                if (this.rank[root1] > this.rank[root2]) {
                    this.parent[root2] = root1;
                } else if (this.rank[root1] < this.rank[root2]) {
                    this.parent[root1] = root2;
                } else {
                    this.parent[root2] = root1;
                    this.rank[root1]++;
                }
            }
        }

        connected(node1, node2) {
            return this.find(node1) === this.find(node2);
        }
    }

    function kruskal(edges, numVertices) {
        edges.sort((a, b) => a[2] - b[2]); // Sort edges by weight
        const uf = new UnionFind(numVertices);
        const mst = [];
        let totalWeight = 0;

        for (const [u, v, weight] of edges) {
            if (!uf.connected(u - 1, v - 1)) {
                uf.union(u - 1, v - 1);
                mst.push([u, v, weight]);
                totalWeight += weight;
            }
        }

        return { mst, totalWeight };
    }

    const edges = [
        [1, 2, 4],
        [1, 3, 1],
        [2, 3, 2],
        [2, 4, 5],
        [3, 4, 8],
        [1, 4, 3]
    ];
    const numVertices = 4;

    const { mst, totalWeight } = kruskal(edges, numVertices);
    console.log("List of edges in the minimum spanning tree:", mst);
    console.log("Sum of minimum weights:", totalWeight);

Step 5: Analyzing Results

The results obtained through the implemented algorithm are as follows.
We analyze whether the algorithm works correctly by checking the list of edges in the minimum spanning tree and the total weight.
As a result, we successfully formed the minimum spanning tree based on the given edges.

  • List of edges in the minimum spanning tree: [(1, 3, 1), (2, 3, 2), (1, 4, 3), (2, 4, 5)]
  • Sum of minimum weights: 11

Conclusion

Today, we examined how to solve the minimum spanning tree problem using JavaScript.
Various algorithms can be applied using the given list of edges, and we can understand the characteristics of graphs in the process.
While tackling such problems, we can gain experience in algorithm performance analysis and optimization,
and since this is a topic likely to appear in actual coding tests, be sure to practice sufficiently.