In [1]:
#Graph class
from graph_node_class import node
class graph:
    def __init__(self,root = None):
        self.root = root
        ajlist = {}