最佳答案
如何在 python 中检查 deque 的长度?
我不认为他们在 Python 中提供了足够的长度..。
Http://docs.python.org/tutorial/datastructures.html
from collections import deque
queue = deque(["Eric", "John", "Michael"])
如何检查这个 deque 的长度?
我们可以初始化
queue = deque([]) #is this length 0 deque?