是否存在一种更快的合并两个双端队列的方法?
# a, b are two deques. The maximum length
# of a is greater than the current length
# of a plus the current length of b
while len(b):
a.append(b.popleft())
请注意,我对保留输入双端队列不感兴趣,只对尽快合并合并双端感兴趣。
答案 0 :(得分:2)
不需要元素附加,您可以使用"TXT"
:
+=