GraphCoding data structure# How to storeYou can use a Hash map. Keys are vertices, values are children. You can also use adjacency matrix.# AlgorithmsDijkstra’s algorithm# LinksRepresenting graphs in Python