• <bdo id='xMOtb'></bdo><ul id='xMOtb'></ul>
      <tfoot id='xMOtb'></tfoot>
      <i id='xMOtb'><tr id='xMOtb'><dt id='xMOtb'><q id='xMOtb'><span id='xMOtb'><b id='xMOtb'><form id='xMOtb'><ins id='xMOtb'></ins><ul id='xMOtb'></ul><sub id='xMOtb'></sub></form><legend id='xMOtb'></legend><bdo id='xMOtb'><pre id='xMOtb'><center id='xMOtb'></center></pre></bdo></b><th id='xMOtb'></th></span></q></dt></tr></i><div id='xMOtb'><tfoot id='xMOtb'></tfoot><dl id='xMOtb'><fieldset id='xMOtb'></fieldset></dl></div>

    1. <small id='xMOtb'></small><noframes id='xMOtb'>

    2. <legend id='xMOtb'><style id='xMOtb'><dir id='xMOtb'><q id='xMOtb'></q></dir></style></legend>

        双端队列在 Python 中是如何工作的

        How Does Deque Work in Python(双端队列在 Python 中是如何工作的)
        • <tfoot id='fnQuk'></tfoot>

            • <i id='fnQuk'><tr id='fnQuk'><dt id='fnQuk'><q id='fnQuk'><span id='fnQuk'><b id='fnQuk'><form id='fnQuk'><ins id='fnQuk'></ins><ul id='fnQuk'></ul><sub id='fnQuk'></sub></form><legend id='fnQuk'></legend><bdo id='fnQuk'><pre id='fnQuk'><center id='fnQuk'></center></pre></bdo></b><th id='fnQuk'></th></span></q></dt></tr></i><div id='fnQuk'><tfoot id='fnQuk'></tfoot><dl id='fnQuk'><fieldset id='fnQuk'></fieldset></dl></div>
              <legend id='fnQuk'><style id='fnQuk'><dir id='fnQuk'><q id='fnQuk'></q></dir></style></legend>

              <small id='fnQuk'></small><noframes id='fnQuk'>

                  <tbody id='fnQuk'></tbody>
                  <bdo id='fnQuk'></bdo><ul id='fnQuk'></ul>
                  本文介绍了双端队列在 Python 中是如何工作的的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  在尝试在 Python 中重新创建队列和堆栈时,我无法理解以下代码片段中双端队列的工作原理.

                  I am having trouble understanding how the deque works in the snippet of code below, while trying to recreate a queue and a stack in Python.

                  堆栈示例 - 了解

                  stack = ["a", "b", "c"]
                  
                  # push operation
                  stack.append("e")
                  print(stack)
                  
                  # pop operation
                  stack.pop()
                  print(stack)
                  

                  正如预期的那样,在推入和弹出时,e"是后进先出 (LIFO).我的问题是下面的例子.

                  As expected when pushing and popping, the "e" goes Last In, First Out (LIFO). My question is with the example below.

                  队列示例 - 不理解

                  from collections import deque
                  
                  dq = deque(['a','b','c'])
                  print(dq)
                  
                  # push
                  dq.append('e')
                  print(dq)
                  
                  # pop
                  dq.pop()
                  print(dq)
                  

                  当推动和弹出时,e"进入后进先出 (LIFO).不应该是先进先出(FIFO)吗?

                  When pushing and popping, the "e" goes Last In, First Out (LIFO). Shouldn't it be First In, First Out (FIFO)?

                  推荐答案

                  双端队列是栈和队列的概括(双端队列"的简称).

                  因此,pop() 操作仍然使它像一个堆栈一样,就像它作为一个列表一样.要使其像队列一样,请使用 popleft() 命令.Deques 被用来支持这两种行为,这样 pop() 函数在数据结构中是一致的.为了使双端队列像队列一样工作,您必须使用与队列对应的函数.因此,在第二个示例中将 pop() 替换为 popleft(),您应该会看到预期的 FIFO 行为.

                  Thus, the pop() operation still causes it to act like a stack, just as it would have as a list. To make it act like a queue, use the popleft() command. Deques are made to support both behaviors, and this way the pop() function is consistent across data structures. In order to make the deque act like a queue, you must use the functions that correspond to queues. So, replace pop() with popleft() in your second example, and you should see the FIFO behavior that you expect.

                  双端队列还支持最大长度,这意味着当您向双端队列添加大于最大长度的对象时,它将从另一端丢弃"一些对象以保持其最大大小.

                  Deques also support a max length, which means when you add objects to the deque greater than the maxlength, it will "drop" a number of objects off the opposite end to maintain its max size.

                  这篇关于双端队列在 Python 中是如何工作的的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Adding config modes to Plotly.Py offline - modebar(将配置模式添加到 Plotly.Py 离线 - 模式栏)
                  Plotly: How to style a plotly figure so that it doesn#39;t display gaps for missing dates?(Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙?)
                  python save plotly plot to local file and insert into html(python将绘图保存到本地文件并插入到html中)
                  Plotly: What color cycle does plotly express follow?(情节:情节表达遵循什么颜色循环?)
                  How to save plotly express plot into a html or static image file?(如何将情节表达图保存到 html 或静态图像文件中?)
                  Plotly: How to make a line plot from a pandas dataframe with a long or wide format?(Plotly:如何使用长格式或宽格式的 pandas 数据框制作线图?)
                    <tfoot id='gTkBZ'></tfoot>
                      <tbody id='gTkBZ'></tbody>

                      • <bdo id='gTkBZ'></bdo><ul id='gTkBZ'></ul>
                      • <small id='gTkBZ'></small><noframes id='gTkBZ'>

                          <i id='gTkBZ'><tr id='gTkBZ'><dt id='gTkBZ'><q id='gTkBZ'><span id='gTkBZ'><b id='gTkBZ'><form id='gTkBZ'><ins id='gTkBZ'></ins><ul id='gTkBZ'></ul><sub id='gTkBZ'></sub></form><legend id='gTkBZ'></legend><bdo id='gTkBZ'><pre id='gTkBZ'><center id='gTkBZ'></center></pre></bdo></b><th id='gTkBZ'></th></span></q></dt></tr></i><div id='gTkBZ'><tfoot id='gTkBZ'></tfoot><dl id='gTkBZ'><fieldset id='gTkBZ'></fieldset></dl></div>
                        • <legend id='gTkBZ'><style id='gTkBZ'><dir id='gTkBZ'><q id='gTkBZ'></q></dir></style></legend>