Design and implement a Graph class using one of the frameworks discussed in class. Your graph must be able to load in files: graph1.txt, graph2.txt, and graph3.txt and represent the graphs contained within them. The files give you first a list of all nodes in the graph, one node per line, an empty line, then the list of edges. Each edge is represented as A B X, where A and B are the nodes, and X is the weight attached to them. The graphs that are being passed in are UNDIRECTED (that is, if you have and edge (A, B), you have the edge (B, A) as well. Your graph representation must be able to do the following: