2020
11-19
11-19
基于python模拟bfs和dfs代码实例
BFS"""#@Time:2020/11/8#@Author:JimouChen"""#广搜defbfs(graph,start):queue=[start]#先把起点入队列visited=set()#访问国的点加入visited.add(start)whilelen(queue):vertex=queue.pop(0)#找到队列首元素的连接点forvingraph[vertex]:ifvnotinvisited:queue.append(v)visited.add(v)#打印弹出队列的该头元素print(vertex,end='')if__name...
继续阅读 >