Created
May 2, 2022 21:25
-
-
Save sausheong/d556be92efb0cda2595b3c5e646aa759 to your computer and use it in GitHub Desktop.
mst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func main() { | |
graph := buildGraph() | |
fmt.Println("GRAPH\n-----") | |
nodes := sortNodes(graph.Nodes) | |
for _, node := range nodes { | |
fmt.Printf("%s -> %v\n", node.name, graph.Edges[node.name]) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment