Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 368 Bytes

README.md

File metadata and controls

9 lines (6 loc) · 368 Bytes

graph_matrix

A graph represented by a matrix that tells you the if it is fully connected and the minimum spanning tree associated with it. This was a hacky perl script I wrote for my algorithms class in college.

Breadth first search, followed by Kruskal's algorithm for min spanning tree.

Hello, world!