Skip to content

Takes an appropriately formatted txt file, translates an undirected, unweighted graph into an adjacency matrix, and outputs the number of connected components within the graph.

Notifications You must be signed in to change notification settings

sammurraytuesta/connected-components

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Connected Components

Takes an appropriately formatted txt file, translates an undirected, unweighted graph into an adjacency matrix, and outputs the number of connected components within the graph.

made-with-java java-version data-structures macOS GitHub

Table of Contents
  1. Program Specification
  2. Thank You!

Program Specification

This program takes a single command line argument specifying a filename. The given file adheres to the format specified below. The program then reads the file to create an adjacency matrix representation of the graph and computes and prints the number of connected components in the graph.

Input File Specification

Nodes in this undirected graph are numbered sequentially from 0..|V|. The first line of the file contains a single integer, specifying the number of |V|, and each remaining line in the file contains two integers indicating that an edge exists between the two nodes.

Sample Input

The sample input.txt is provided and formatted accordingly:

5
0 1
3 4
1 2

Adjacency Matrix

From the sample input.txt, the following adjacency matrix is created and used to determine the number of connected components in the graph using a depth first search graph analysis algorithm.

0 1 2 3 4
0 0 1 0 0 0
1 1 0 1 0 0
2 0 1 0 0 0
3 0 0 0 0 1
4 0 0 0 1 0

Graph Visualization

The following graph is a visual representation of the data provided. This shows the "connectedness" of the components. From this visualization we can see that the expected output is 2 (the number of structures formed due to node connections).

graph

Sample Invocation

Compile and run the program with a single command line argument specifying a filename. The program will return the number of connected components. In this case the output is 2 given the sample input.txt file.

$ javac Components.java
$ java Components input.txt
2

Thank You!

Enjoy Connected Components!

About

Takes an appropriately formatted txt file, translates an undirected, unweighted graph into an adjacency matrix, and outputs the number of connected components within the graph.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages