查找图中顶点之间的所有路径

问题描述 投票:0回答:1

我一直在使用python https://www.geeksforgeeks.org/find-paths-given-source-destination/此处发布的解决方案,它对于多个输入图效果很好,但是对于此特定输入,我无法生成路径。代码是否存在问题,或者输入图形表示是否存在问题?请帮忙。

# Python program to print all paths from a source to destination. 

from collections import defaultdict 

#This class represents a directed graph 
# using adjacency list representation 
class Graph: 

    def __init__(self,vertices): 
        #No. of vertices 
        self.V= vertices 

        # default dictionary to store graph 
        self.graph = defaultdict(list) 

    # function to add an edge to graph 
    def addEdge(self,u,v): 
        self.graph[u].append(v) 

    '''A recursive function to print all paths from 'u' to 'd'. 
    visited[] keeps track of vertices in current path. 
    path[] stores actual vertices and path_index is current 
    index in path[]'''
    def printAllPathsUtil(self, u, d, visited, path): 

        # Mark the current node as visited and store in path 
        visited[u]= True
        path.append(u) 

        # If current vertex is same as destination, then print 
        # current path[] 
        if u ==d: 
            print path 
        else: 
            # If current vertex is not destination 
            #Recur for all the vertices adjacent to this vertex 
            for i in self.graph[u]: 
                if visited[i]==False: 
                    self.printAllPathsUtil(i, d, visited, path) 

        # Remove current vertex from path[] and mark it as unvisited 
        path.pop() 
        visited[u]= False


    # Prints all paths from 's' to 'd' 
    def printAllPaths(self,s, d): 

        # Mark all the vertices as not visited 
        visited =[False]*(self.V) 

        # Create an array to store paths 
        path = [] 

        # Call the recursive helper function to print all paths 
        self.printAllPathsUtil(s, d,visited, path) 



# Create a graph given in the above diagram 
# g = Graph(4) 
# g.addEdge(0, 1) 
# g.addEdge(0, 2) 
# g.addEdge(0, 3) 
# g.addEdge(2, 0) 
# g.addEdge(2, 1) 
# g.addEdge(1, 3) 

g= Graph(5)
g.addEdge(1,2)
g.addEdge(1,4)
g.addEdge(1,5)
g.addEdge(2,1)
g.addEdge(2,3)
g.addEdge(3,2)
g.addEdge(3,4)
g.addEdge(4,1)
g.addEdge(4,3)
g.addEdge(4,5)
g.addEdge(5,1)
g.addEdge(5,4)



s = 1 ; d = 4
print ("Following are all different paths from %d to %d :" %(s, d)) 
g.printAllPaths(s, d) 

python graph path graph-theory breadth-first-search
1个回答
1
投票

问题出在class Graph()初始化上。此类使用基于0的索引,但您提供基于1的索引。将g = Graph(5)更改为希望在g = Graph(6)中具有节点的[0,1,2,3,4,5]解决了该问题。

© www.soinside.com 2019 - 2024. All rights reserved.