Answers for "representation of graph usig sets and hash in python"

0

representation of graph usig sets and hash in python

def find_path(graph, start, end, path=[]):
        path = path + [start]
        if start == end:
            return path
        if not graph.has_key(start):
            return None
        for node in graph[start]:
            if node not in path:
                newpath = find_path(graph, node, end, path)
                if newpath: return newpath
        return None
Posted by: Guest on July-21-2020

Code answers related to "representation of graph usig sets and hash in python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language