鉴于此代码......
import Queue
def breadthFirstSearch(graph, start, end):
q = Queue.Queue()
path = [start]
q.put(path)
visited = set([start])
while not q.empty():
path = q.get()
last_node = path[-1]
if last_node == end:
return path
for node in graph[last_node]:
if node not in visited:
visited.add(node)
q.put(path + [node])
其中graph是表示有向图的字典,例如{'stack':['overflow'],'foo':['bar']}即,堆栈指向溢出而foo指向bar。
为什么在将Queue.Queue替换为集合中的deque以提高效率时,我得不到相同的结果?
from collections import deque
def breadthFirstSearch(graph, start, end):
q = deque()
path = [start]
q.append(path)
visited = set([start])
while q:
path = q.pop()
last_node = path[-1]
if last_node == end:
return path
for node in graph[last_node]:
if node not in visited:
visited.add(node)
q.append(path + [node])
答案 0 :(得分:2)
当Queue.Queue
版本使用FILO时,deque
版本使用FIFO。您应该使用path = q.popleft()
来解决此问题。
请注意,Queue.Queue
在内部使用基础deque
来表示队列。有关详细信息,请参阅relevant documentation(请参阅_get
方法)