gooderp18绿色标准版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

621 lines
45KB

  1. <!DOCTYPE html>
  2. <html lang="en" data-content_root="../">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <meta property="og:title" content="heapq — Heap queue algorithm" />
  7. <meta property="og:type" content="website" />
  8. <meta property="og:url" content="https://docs.python.org/3/library/heapq.html" />
  9. <meta property="og:site_name" content="Python documentation" />
  10. <meta property="og:description" content="Source code: Lib/heapq.py This module provides an implementation of the heap queue algorithm, also known as the priority queue algorithm. Heaps are binary trees for which every parent node has a va..." />
  11. <meta property="og:image" content="https://docs.python.org/3/_static/og-image.png" />
  12. <meta property="og:image:alt" content="Python documentation" />
  13. <meta name="description" content="Source code: Lib/heapq.py This module provides an implementation of the heap queue algorithm, also known as the priority queue algorithm. Heaps are binary trees for which every parent node has a va..." />
  14. <meta property="og:image:width" content="200" />
  15. <meta property="og:image:height" content="200" />
  16. <meta name="theme-color" content="#3776ab" />
  17. <title>heapq — Heap queue algorithm &#8212; Python 3.12.3 documentation</title><meta name="viewport" content="width=device-width, initial-scale=1.0">
  18. <link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=80d5e7a1" />
  19. <link rel="stylesheet" type="text/css" href="../_static/pydoctheme.css?v=bb723527" />
  20. <link id="pygments_dark_css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css" href="../_static/pygments_dark.css?v=b20cc3f5" />
  21. <script src="../_static/documentation_options.js?v=2c828074"></script>
  22. <script src="../_static/doctools.js?v=888ff710"></script>
  23. <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
  24. <script src="../_static/sidebar.js"></script>
  25. <link rel="search" type="application/opensearchdescription+xml"
  26. title="Search within Python 3.12.3 documentation"
  27. href="../_static/opensearch.xml"/>
  28. <link rel="author" title="About these documents" href="../about.html" />
  29. <link rel="index" title="Index" href="../genindex.html" />
  30. <link rel="search" title="Search" href="../search.html" />
  31. <link rel="copyright" title="Copyright" href="../copyright.html" />
  32. <link rel="next" title="bisect — Array bisection algorithm" href="bisect.html" />
  33. <link rel="prev" title="collections.abc — Abstract Base Classes for Containers" href="collections.abc.html" />
  34. <link rel="canonical" href="https://docs.python.org/3/library/heapq.html" />
  35. <style>
  36. @media only screen {
  37. table.full-width-table {
  38. width: 100%;
  39. }
  40. }
  41. </style>
  42. <link rel="stylesheet" href="../_static/pydoctheme_dark.css" media="(prefers-color-scheme: dark)" id="pydoctheme_dark_css">
  43. <link rel="shortcut icon" type="image/png" href="../_static/py.svg" />
  44. <script type="text/javascript" src="../_static/copybutton.js"></script>
  45. <script type="text/javascript" src="../_static/menu.js"></script>
  46. <script type="text/javascript" src="../_static/search-focus.js"></script>
  47. <script type="text/javascript" src="../_static/themetoggle.js"></script>
  48. </head>
  49. <body>
  50. <div class="mobile-nav">
  51. <input type="checkbox" id="menuToggler" class="toggler__input" aria-controls="navigation"
  52. aria-pressed="false" aria-expanded="false" role="button" aria-label="Menu" />
  53. <nav class="nav-content" role="navigation">
  54. <label for="menuToggler" class="toggler__label">
  55. <span></span>
  56. </label>
  57. <span class="nav-items-wrapper">
  58. <a href="https://www.python.org/" class="nav-logo">
  59. <img src="../_static/py.svg" alt="Python logo"/>
  60. </a>
  61. <span class="version_switcher_placeholder"></span>
  62. <form role="search" class="search" action="../search.html" method="get">
  63. <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" class="search-icon">
  64. <path fill-rule="nonzero" fill="currentColor" d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 001.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 00-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 005.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path>
  65. </svg>
  66. <input placeholder="Quick search" aria-label="Quick search" type="search" name="q" />
  67. <input type="submit" value="Go"/>
  68. </form>
  69. </span>
  70. </nav>
  71. <div class="menu-wrapper">
  72. <nav class="menu" role="navigation" aria-label="main navigation">
  73. <div class="language_switcher_placeholder"></div>
  74. <label class="theme-selector-label">
  75. Theme
  76. <select class="theme-selector" oninput="activateTheme(this.value)">
  77. <option value="auto" selected>Auto</option>
  78. <option value="light">Light</option>
  79. <option value="dark">Dark</option>
  80. </select>
  81. </label>
  82. <div>
  83. <h3><a href="../contents.html">Table of Contents</a></h3>
  84. <ul>
  85. <li><a class="reference internal" href="#"><code class="xref py py-mod docutils literal notranslate"><span class="pre">heapq</span></code> — Heap queue algorithm</a><ul>
  86. <li><a class="reference internal" href="#basic-examples">Basic Examples</a></li>
  87. <li><a class="reference internal" href="#priority-queue-implementation-notes">Priority Queue Implementation Notes</a></li>
  88. <li><a class="reference internal" href="#theory">Theory</a></li>
  89. </ul>
  90. </li>
  91. </ul>
  92. </div>
  93. <div>
  94. <h4>Previous topic</h4>
  95. <p class="topless"><a href="collections.abc.html"
  96. title="previous chapter"><code class="xref py py-mod docutils literal notranslate"><span class="pre">collections.abc</span></code> — Abstract Base Classes for Containers</a></p>
  97. </div>
  98. <div>
  99. <h4>Next topic</h4>
  100. <p class="topless"><a href="bisect.html"
  101. title="next chapter"><code class="xref py py-mod docutils literal notranslate"><span class="pre">bisect</span></code> — Array bisection algorithm</a></p>
  102. </div>
  103. <div role="note" aria-label="source link">
  104. <h3>This Page</h3>
  105. <ul class="this-page-menu">
  106. <li><a href="../bugs.html">Report a Bug</a></li>
  107. <li>
  108. <a href="https://github.com/python/cpython/blob/main/Doc/library/heapq.rst"
  109. rel="nofollow">Show Source
  110. </a>
  111. </li>
  112. </ul>
  113. </div>
  114. </nav>
  115. </div>
  116. </div>
  117. <div class="related" role="navigation" aria-label="related navigation">
  118. <h3>Navigation</h3>
  119. <ul>
  120. <li class="right" style="margin-right: 10px">
  121. <a href="../genindex.html" title="General Index"
  122. accesskey="I">index</a></li>
  123. <li class="right" >
  124. <a href="../py-modindex.html" title="Python Module Index"
  125. >modules</a> |</li>
  126. <li class="right" >
  127. <a href="bisect.html" title="bisect — Array bisection algorithm"
  128. accesskey="N">next</a> |</li>
  129. <li class="right" >
  130. <a href="collections.abc.html" title="collections.abc — Abstract Base Classes for Containers"
  131. accesskey="P">previous</a> |</li>
  132. <li><img src="../_static/py.svg" alt="Python logo" style="vertical-align: middle; margin-top: -1px"/></li>
  133. <li><a href="https://www.python.org/">Python</a> &#187;</li>
  134. <li class="switchers">
  135. <div class="language_switcher_placeholder"></div>
  136. <div class="version_switcher_placeholder"></div>
  137. </li>
  138. <li>
  139. </li>
  140. <li id="cpython-language-and-version">
  141. <a href="../index.html">3.12.3 Documentation</a> &#187;
  142. </li>
  143. <li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &#187;</li>
  144. <li class="nav-item nav-item-2"><a href="datatypes.html" accesskey="U">Data Types</a> &#187;</li>
  145. <li class="nav-item nav-item-this"><a href=""><code class="xref py py-mod docutils literal notranslate"><span class="pre">heapq</span></code> — Heap queue algorithm</a></li>
  146. <li class="right">
  147. <div class="inline-search" role="search">
  148. <form class="inline-search" action="../search.html" method="get">
  149. <input placeholder="Quick search" aria-label="Quick search" type="search" name="q" id="search-box" />
  150. <input type="submit" value="Go" />
  151. </form>
  152. </div>
  153. |
  154. </li>
  155. <li class="right">
  156. <label class="theme-selector-label">
  157. Theme
  158. <select class="theme-selector" oninput="activateTheme(this.value)">
  159. <option value="auto" selected>Auto</option>
  160. <option value="light">Light</option>
  161. <option value="dark">Dark</option>
  162. </select>
  163. </label> |</li>
  164. </ul>
  165. </div>
  166. <div class="document">
  167. <div class="documentwrapper">
  168. <div class="bodywrapper">
  169. <div class="body" role="main">
  170. <section id="module-heapq">
  171. <span id="heapq-heap-queue-algorithm"></span><h1><a class="reference internal" href="#module-heapq" title="heapq: Heap queue algorithm (a.k.a. priority queue)."><code class="xref py py-mod docutils literal notranslate"><span class="pre">heapq</span></code></a> — Heap queue algorithm<a class="headerlink" href="#module-heapq" title="Link to this heading">¶</a></h1>
  172. <p><strong>Source code:</strong> <a class="reference external" href="https://github.com/python/cpython/tree/3.12/Lib/heapq.py">Lib/heapq.py</a></p>
  173. <hr class="docutils" />
  174. <p>This module provides an implementation of the heap queue algorithm, also known
  175. as the priority queue algorithm.</p>
  176. <p>Heaps are binary trees for which every parent node has a value less than or
  177. equal to any of its children. This implementation uses arrays for which
  178. <code class="docutils literal notranslate"><span class="pre">heap[k]</span> <span class="pre">&lt;=</span> <span class="pre">heap[2*k+1]</span></code> and <code class="docutils literal notranslate"><span class="pre">heap[k]</span> <span class="pre">&lt;=</span> <span class="pre">heap[2*k+2]</span></code> for all <em>k</em>, counting
  179. elements from zero. For the sake of comparison, non-existing elements are
  180. considered to be infinite. The interesting property of a heap is that its
  181. smallest element is always the root, <code class="docutils literal notranslate"><span class="pre">heap[0]</span></code>.</p>
  182. <p>The API below differs from textbook heap algorithms in two aspects: (a) We use
  183. zero-based indexing. This makes the relationship between the index for a node
  184. and the indexes for its children slightly less obvious, but is more suitable
  185. since Python uses zero-based indexing. (b) Our pop method returns the smallest
  186. item, not the largest (called a “min heap” in textbooks; a “max heap” is more
  187. common in texts because of its suitability for in-place sorting).</p>
  188. <p>These two make it possible to view the heap as a regular Python list without
  189. surprises: <code class="docutils literal notranslate"><span class="pre">heap[0]</span></code> is the smallest item, and <code class="docutils literal notranslate"><span class="pre">heap.sort()</span></code> maintains the
  190. heap invariant!</p>
  191. <p>To create a heap, use a list initialized to <code class="docutils literal notranslate"><span class="pre">[]</span></code>, or you can transform a
  192. populated list into a heap via function <a class="reference internal" href="#heapq.heapify" title="heapq.heapify"><code class="xref py py-func docutils literal notranslate"><span class="pre">heapify()</span></code></a>.</p>
  193. <p>The following functions are provided:</p>
  194. <dl class="py function">
  195. <dt class="sig sig-object py" id="heapq.heappush">
  196. <span class="sig-prename descclassname"><span class="pre">heapq.</span></span><span class="sig-name descname"><span class="pre">heappush</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">heap</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">item</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#heapq.heappush" title="Link to this definition">¶</a></dt>
  197. <dd><p>Push the value <em>item</em> onto the <em>heap</em>, maintaining the heap invariant.</p>
  198. </dd></dl>
  199. <dl class="py function">
  200. <dt class="sig sig-object py" id="heapq.heappop">
  201. <span class="sig-prename descclassname"><span class="pre">heapq.</span></span><span class="sig-name descname"><span class="pre">heappop</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">heap</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#heapq.heappop" title="Link to this definition">¶</a></dt>
  202. <dd><p>Pop and return the smallest item from the <em>heap</em>, maintaining the heap
  203. invariant. If the heap is empty, <a class="reference internal" href="exceptions.html#IndexError" title="IndexError"><code class="xref py py-exc docutils literal notranslate"><span class="pre">IndexError</span></code></a> is raised. To access the
  204. smallest item without popping it, use <code class="docutils literal notranslate"><span class="pre">heap[0]</span></code>.</p>
  205. </dd></dl>
  206. <dl class="py function">
  207. <dt class="sig sig-object py" id="heapq.heappushpop">
  208. <span class="sig-prename descclassname"><span class="pre">heapq.</span></span><span class="sig-name descname"><span class="pre">heappushpop</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">heap</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">item</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#heapq.heappushpop" title="Link to this definition">¶</a></dt>
  209. <dd><p>Push <em>item</em> on the heap, then pop and return the smallest item from the
  210. <em>heap</em>. The combined action runs more efficiently than <a class="reference internal" href="#heapq.heappush" title="heapq.heappush"><code class="xref py py-func docutils literal notranslate"><span class="pre">heappush()</span></code></a>
  211. followed by a separate call to <a class="reference internal" href="#heapq.heappop" title="heapq.heappop"><code class="xref py py-func docutils literal notranslate"><span class="pre">heappop()</span></code></a>.</p>
  212. </dd></dl>
  213. <dl class="py function">
  214. <dt class="sig sig-object py" id="heapq.heapify">
  215. <span class="sig-prename descclassname"><span class="pre">heapq.</span></span><span class="sig-name descname"><span class="pre">heapify</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">x</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#heapq.heapify" title="Link to this definition">¶</a></dt>
  216. <dd><p>Transform list <em>x</em> into a heap, in-place, in linear time.</p>
  217. </dd></dl>
  218. <dl class="py function">
  219. <dt class="sig sig-object py" id="heapq.heapreplace">
  220. <span class="sig-prename descclassname"><span class="pre">heapq.</span></span><span class="sig-name descname"><span class="pre">heapreplace</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">heap</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">item</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#heapq.heapreplace" title="Link to this definition">¶</a></dt>
  221. <dd><p>Pop and return the smallest item from the <em>heap</em>, and also push the new <em>item</em>.
  222. The heap size doesn’t change. If the heap is empty, <a class="reference internal" href="exceptions.html#IndexError" title="IndexError"><code class="xref py py-exc docutils literal notranslate"><span class="pre">IndexError</span></code></a> is raised.</p>
  223. <p>This one step operation is more efficient than a <a class="reference internal" href="#heapq.heappop" title="heapq.heappop"><code class="xref py py-func docutils literal notranslate"><span class="pre">heappop()</span></code></a> followed by
  224. <a class="reference internal" href="#heapq.heappush" title="heapq.heappush"><code class="xref py py-func docutils literal notranslate"><span class="pre">heappush()</span></code></a> and can be more appropriate when using a fixed-size heap.
  225. The pop/push combination always returns an element from the heap and replaces
  226. it with <em>item</em>.</p>
  227. <p>The value returned may be larger than the <em>item</em> added. If that isn’t
  228. desired, consider using <a class="reference internal" href="#heapq.heappushpop" title="heapq.heappushpop"><code class="xref py py-func docutils literal notranslate"><span class="pre">heappushpop()</span></code></a> instead. Its push/pop
  229. combination returns the smaller of the two values, leaving the larger value
  230. on the heap.</p>
  231. </dd></dl>
  232. <p>The module also offers three general purpose functions based on heaps.</p>
  233. <dl class="py function">
  234. <dt class="sig sig-object py" id="heapq.merge">
  235. <span class="sig-prename descclassname"><span class="pre">heapq.</span></span><span class="sig-name descname"><span class="pre">merge</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="o"><span class="pre">*</span></span><span class="n"><span class="pre">iterables</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">key</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">reverse</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">False</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#heapq.merge" title="Link to this definition">¶</a></dt>
  236. <dd><p>Merge multiple sorted inputs into a single sorted output (for example, merge
  237. timestamped entries from multiple log files). Returns an <a class="reference internal" href="../glossary.html#term-iterator"><span class="xref std std-term">iterator</span></a>
  238. over the sorted values.</p>
  239. <p>Similar to <code class="docutils literal notranslate"><span class="pre">sorted(itertools.chain(*iterables))</span></code> but returns an iterable, does
  240. not pull the data into memory all at once, and assumes that each of the input
  241. streams is already sorted (smallest to largest).</p>
  242. <p>Has two optional arguments which must be specified as keyword arguments.</p>
  243. <p><em>key</em> specifies a <a class="reference internal" href="../glossary.html#term-key-function"><span class="xref std std-term">key function</span></a> of one argument that is used to
  244. extract a comparison key from each input element. The default value is
  245. <code class="docutils literal notranslate"><span class="pre">None</span></code> (compare the elements directly).</p>
  246. <p><em>reverse</em> is a boolean value. If set to <code class="docutils literal notranslate"><span class="pre">True</span></code>, then the input elements
  247. are merged as if each comparison were reversed. To achieve behavior similar
  248. to <code class="docutils literal notranslate"><span class="pre">sorted(itertools.chain(*iterables),</span> <span class="pre">reverse=True)</span></code>, all iterables must
  249. be sorted from largest to smallest.</p>
  250. <div class="versionchanged">
  251. <p><span class="versionmodified changed">Changed in version 3.5: </span>Added the optional <em>key</em> and <em>reverse</em> parameters.</p>
  252. </div>
  253. </dd></dl>
  254. <dl class="py function">
  255. <dt class="sig sig-object py" id="heapq.nlargest">
  256. <span class="sig-prename descclassname"><span class="pre">heapq.</span></span><span class="sig-name descname"><span class="pre">nlargest</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">n</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">iterable</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">key</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#heapq.nlargest" title="Link to this definition">¶</a></dt>
  257. <dd><p>Return a list with the <em>n</em> largest elements from the dataset defined by
  258. <em>iterable</em>. <em>key</em>, if provided, specifies a function of one argument that is
  259. used to extract a comparison key from each element in <em>iterable</em> (for example,
  260. <code class="docutils literal notranslate"><span class="pre">key=str.lower</span></code>). Equivalent to: <code class="docutils literal notranslate"><span class="pre">sorted(iterable,</span> <span class="pre">key=key,</span>
  261. <span class="pre">reverse=True)[:n]</span></code>.</p>
  262. </dd></dl>
  263. <dl class="py function">
  264. <dt class="sig sig-object py" id="heapq.nsmallest">
  265. <span class="sig-prename descclassname"><span class="pre">heapq.</span></span><span class="sig-name descname"><span class="pre">nsmallest</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">n</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">iterable</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">key</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#heapq.nsmallest" title="Link to this definition">¶</a></dt>
  266. <dd><p>Return a list with the <em>n</em> smallest elements from the dataset defined by
  267. <em>iterable</em>. <em>key</em>, if provided, specifies a function of one argument that is
  268. used to extract a comparison key from each element in <em>iterable</em> (for example,
  269. <code class="docutils literal notranslate"><span class="pre">key=str.lower</span></code>). Equivalent to: <code class="docutils literal notranslate"><span class="pre">sorted(iterable,</span> <span class="pre">key=key)[:n]</span></code>.</p>
  270. </dd></dl>
  271. <p>The latter two functions perform best for smaller values of <em>n</em>. For larger
  272. values, it is more efficient to use the <a class="reference internal" href="functions.html#sorted" title="sorted"><code class="xref py py-func docutils literal notranslate"><span class="pre">sorted()</span></code></a> function. Also, when
  273. <code class="docutils literal notranslate"><span class="pre">n==1</span></code>, it is more efficient to use the built-in <a class="reference internal" href="functions.html#min" title="min"><code class="xref py py-func docutils literal notranslate"><span class="pre">min()</span></code></a> and <a class="reference internal" href="functions.html#max" title="max"><code class="xref py py-func docutils literal notranslate"><span class="pre">max()</span></code></a>
  274. functions. If repeated usage of these functions is required, consider turning
  275. the iterable into an actual heap.</p>
  276. <section id="basic-examples">
  277. <h2>Basic Examples<a class="headerlink" href="#basic-examples" title="Link to this heading">¶</a></h2>
  278. <p>A <a class="reference external" href="https://en.wikipedia.org/wiki/Heapsort">heapsort</a> can be implemented by
  279. pushing all values onto a heap and then popping off the smallest values one at a
  280. time:</p>
  281. <div class="highlight-python3 notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="k">def</span> <span class="nf">heapsort</span><span class="p">(</span><span class="n">iterable</span><span class="p">):</span>
  282. <span class="gp">... </span> <span class="n">h</span> <span class="o">=</span> <span class="p">[]</span>
  283. <span class="gp">... </span> <span class="k">for</span> <span class="n">value</span> <span class="ow">in</span> <span class="n">iterable</span><span class="p">:</span>
  284. <span class="gp">... </span> <span class="n">heappush</span><span class="p">(</span><span class="n">h</span><span class="p">,</span> <span class="n">value</span><span class="p">)</span>
  285. <span class="gp">... </span> <span class="k">return</span> <span class="p">[</span><span class="n">heappop</span><span class="p">(</span><span class="n">h</span><span class="p">)</span> <span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">h</span><span class="p">))]</span>
  286. <span class="gp">...</span>
  287. <span class="gp">&gt;&gt;&gt; </span><span class="n">heapsort</span><span class="p">([</span><span class="mi">1</span><span class="p">,</span> <span class="mi">3</span><span class="p">,</span> <span class="mi">5</span><span class="p">,</span> <span class="mi">7</span><span class="p">,</span> <span class="mi">9</span><span class="p">,</span> <span class="mi">2</span><span class="p">,</span> <span class="mi">4</span><span class="p">,</span> <span class="mi">6</span><span class="p">,</span> <span class="mi">8</span><span class="p">,</span> <span class="mi">0</span><span class="p">])</span>
  288. <span class="go">[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]</span>
  289. </pre></div>
  290. </div>
  291. <p>This is similar to <code class="docutils literal notranslate"><span class="pre">sorted(iterable)</span></code>, but unlike <a class="reference internal" href="functions.html#sorted" title="sorted"><code class="xref py py-func docutils literal notranslate"><span class="pre">sorted()</span></code></a>, this
  292. implementation is not stable.</p>
  293. <p>Heap elements can be tuples. This is useful for assigning comparison values
  294. (such as task priorities) alongside the main record being tracked:</p>
  295. <div class="highlight-python3 notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">h</span> <span class="o">=</span> <span class="p">[]</span>
  296. <span class="gp">&gt;&gt;&gt; </span><span class="n">heappush</span><span class="p">(</span><span class="n">h</span><span class="p">,</span> <span class="p">(</span><span class="mi">5</span><span class="p">,</span> <span class="s1">&#39;write code&#39;</span><span class="p">))</span>
  297. <span class="gp">&gt;&gt;&gt; </span><span class="n">heappush</span><span class="p">(</span><span class="n">h</span><span class="p">,</span> <span class="p">(</span><span class="mi">7</span><span class="p">,</span> <span class="s1">&#39;release product&#39;</span><span class="p">))</span>
  298. <span class="gp">&gt;&gt;&gt; </span><span class="n">heappush</span><span class="p">(</span><span class="n">h</span><span class="p">,</span> <span class="p">(</span><span class="mi">1</span><span class="p">,</span> <span class="s1">&#39;write spec&#39;</span><span class="p">))</span>
  299. <span class="gp">&gt;&gt;&gt; </span><span class="n">heappush</span><span class="p">(</span><span class="n">h</span><span class="p">,</span> <span class="p">(</span><span class="mi">3</span><span class="p">,</span> <span class="s1">&#39;create tests&#39;</span><span class="p">))</span>
  300. <span class="gp">&gt;&gt;&gt; </span><span class="n">heappop</span><span class="p">(</span><span class="n">h</span><span class="p">)</span>
  301. <span class="go">(1, &#39;write spec&#39;)</span>
  302. </pre></div>
  303. </div>
  304. </section>
  305. <section id="priority-queue-implementation-notes">
  306. <h2>Priority Queue Implementation Notes<a class="headerlink" href="#priority-queue-implementation-notes" title="Link to this heading">¶</a></h2>
  307. <p>A <a class="reference external" href="https://en.wikipedia.org/wiki/Priority_queue">priority queue</a> is common use
  308. for a heap, and it presents several implementation challenges:</p>
  309. <ul class="simple">
  310. <li><p>Sort stability: how do you get two tasks with equal priorities to be returned
  311. in the order they were originally added?</p></li>
  312. <li><p>Tuple comparison breaks for (priority, task) pairs if the priorities are equal
  313. and the tasks do not have a default comparison order.</p></li>
  314. <li><p>If the priority of a task changes, how do you move it to a new position in
  315. the heap?</p></li>
  316. <li><p>Or if a pending task needs to be deleted, how do you find it and remove it
  317. from the queue?</p></li>
  318. </ul>
  319. <p>A solution to the first two challenges is to store entries as 3-element list
  320. including the priority, an entry count, and the task. The entry count serves as
  321. a tie-breaker so that two tasks with the same priority are returned in the order
  322. they were added. And since no two entry counts are the same, the tuple
  323. comparison will never attempt to directly compare two tasks.</p>
  324. <p>Another solution to the problem of non-comparable tasks is to create a wrapper
  325. class that ignores the task item and only compares the priority field:</p>
  326. <div class="highlight-python3 notranslate"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">dataclasses</span> <span class="kn">import</span> <span class="n">dataclass</span><span class="p">,</span> <span class="n">field</span>
  327. <span class="kn">from</span> <span class="nn">typing</span> <span class="kn">import</span> <span class="n">Any</span>
  328. <span class="nd">@dataclass</span><span class="p">(</span><span class="n">order</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
  329. <span class="k">class</span> <span class="nc">PrioritizedItem</span><span class="p">:</span>
  330. <span class="n">priority</span><span class="p">:</span> <span class="nb">int</span>
  331. <span class="n">item</span><span class="p">:</span> <span class="n">Any</span><span class="o">=</span><span class="n">field</span><span class="p">(</span><span class="n">compare</span><span class="o">=</span><span class="kc">False</span><span class="p">)</span>
  332. </pre></div>
  333. </div>
  334. <p>The remaining challenges revolve around finding a pending task and making
  335. changes to its priority or removing it entirely. Finding a task can be done
  336. with a dictionary pointing to an entry in the queue.</p>
  337. <p>Removing the entry or changing its priority is more difficult because it would
  338. break the heap structure invariants. So, a possible solution is to mark the
  339. entry as removed and add a new entry with the revised priority:</p>
  340. <div class="highlight-python3 notranslate"><div class="highlight"><pre><span></span><span class="n">pq</span> <span class="o">=</span> <span class="p">[]</span> <span class="c1"># list of entries arranged in a heap</span>
  341. <span class="n">entry_finder</span> <span class="o">=</span> <span class="p">{}</span> <span class="c1"># mapping of tasks to entries</span>
  342. <span class="n">REMOVED</span> <span class="o">=</span> <span class="s1">&#39;&lt;removed-task&gt;&#39;</span> <span class="c1"># placeholder for a removed task</span>
  343. <span class="n">counter</span> <span class="o">=</span> <span class="n">itertools</span><span class="o">.</span><span class="n">count</span><span class="p">()</span> <span class="c1"># unique sequence count</span>
  344. <span class="k">def</span> <span class="nf">add_task</span><span class="p">(</span><span class="n">task</span><span class="p">,</span> <span class="n">priority</span><span class="o">=</span><span class="mi">0</span><span class="p">):</span>
  345. <span class="s1">&#39;Add a new task or update the priority of an existing task&#39;</span>
  346. <span class="k">if</span> <span class="n">task</span> <span class="ow">in</span> <span class="n">entry_finder</span><span class="p">:</span>
  347. <span class="n">remove_task</span><span class="p">(</span><span class="n">task</span><span class="p">)</span>
  348. <span class="n">count</span> <span class="o">=</span> <span class="nb">next</span><span class="p">(</span><span class="n">counter</span><span class="p">)</span>
  349. <span class="n">entry</span> <span class="o">=</span> <span class="p">[</span><span class="n">priority</span><span class="p">,</span> <span class="n">count</span><span class="p">,</span> <span class="n">task</span><span class="p">]</span>
  350. <span class="n">entry_finder</span><span class="p">[</span><span class="n">task</span><span class="p">]</span> <span class="o">=</span> <span class="n">entry</span>
  351. <span class="n">heappush</span><span class="p">(</span><span class="n">pq</span><span class="p">,</span> <span class="n">entry</span><span class="p">)</span>
  352. <span class="k">def</span> <span class="nf">remove_task</span><span class="p">(</span><span class="n">task</span><span class="p">):</span>
  353. <span class="s1">&#39;Mark an existing task as REMOVED. Raise KeyError if not found.&#39;</span>
  354. <span class="n">entry</span> <span class="o">=</span> <span class="n">entry_finder</span><span class="o">.</span><span class="n">pop</span><span class="p">(</span><span class="n">task</span><span class="p">)</span>
  355. <span class="n">entry</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span> <span class="o">=</span> <span class="n">REMOVED</span>
  356. <span class="k">def</span> <span class="nf">pop_task</span><span class="p">():</span>
  357. <span class="s1">&#39;Remove and return the lowest priority task. Raise KeyError if empty.&#39;</span>
  358. <span class="k">while</span> <span class="n">pq</span><span class="p">:</span>
  359. <span class="n">priority</span><span class="p">,</span> <span class="n">count</span><span class="p">,</span> <span class="n">task</span> <span class="o">=</span> <span class="n">heappop</span><span class="p">(</span><span class="n">pq</span><span class="p">)</span>
  360. <span class="k">if</span> <span class="n">task</span> <span class="ow">is</span> <span class="ow">not</span> <span class="n">REMOVED</span><span class="p">:</span>
  361. <span class="k">del</span> <span class="n">entry_finder</span><span class="p">[</span><span class="n">task</span><span class="p">]</span>
  362. <span class="k">return</span> <span class="n">task</span>
  363. <span class="k">raise</span> <span class="ne">KeyError</span><span class="p">(</span><span class="s1">&#39;pop from an empty priority queue&#39;</span><span class="p">)</span>
  364. </pre></div>
  365. </div>
  366. </section>
  367. <section id="theory">
  368. <h2>Theory<a class="headerlink" href="#theory" title="Link to this heading">¶</a></h2>
  369. <p>Heaps are arrays for which <code class="docutils literal notranslate"><span class="pre">a[k]</span> <span class="pre">&lt;=</span> <span class="pre">a[2*k+1]</span></code> and <code class="docutils literal notranslate"><span class="pre">a[k]</span> <span class="pre">&lt;=</span> <span class="pre">a[2*k+2]</span></code> for all
  370. <em>k</em>, counting elements from 0. For the sake of comparison, non-existing
  371. elements are considered to be infinite. The interesting property of a heap is
  372. that <code class="docutils literal notranslate"><span class="pre">a[0]</span></code> is always its smallest element.</p>
  373. <p>The strange invariant above is meant to be an efficient memory representation
  374. for a tournament. The numbers below are <em>k</em>, not <code class="docutils literal notranslate"><span class="pre">a[k]</span></code>:</p>
  375. <div class="highlight-python3 notranslate"><div class="highlight"><pre><span></span> <span class="mi">0</span>
  376. <span class="mi">1</span> <span class="mi">2</span>
  377. <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span>
  378. <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">10</span> <span class="mi">11</span> <span class="mi">12</span> <span class="mi">13</span> <span class="mi">14</span>
  379. <span class="mi">15</span> <span class="mi">16</span> <span class="mi">17</span> <span class="mi">18</span> <span class="mi">19</span> <span class="mi">20</span> <span class="mi">21</span> <span class="mi">22</span> <span class="mi">23</span> <span class="mi">24</span> <span class="mi">25</span> <span class="mi">26</span> <span class="mi">27</span> <span class="mi">28</span> <span class="mi">29</span> <span class="mi">30</span>
  380. </pre></div>
  381. </div>
  382. <p>In the tree above, each cell <em>k</em> is topping <code class="docutils literal notranslate"><span class="pre">2*k+1</span></code> and <code class="docutils literal notranslate"><span class="pre">2*k+2</span></code>. In a usual
  383. binary tournament we see in sports, each cell is the winner over the two cells
  384. it tops, and we can trace the winner down the tree to see all opponents s/he
  385. had. However, in many computer applications of such tournaments, we do not need
  386. to trace the history of a winner. To be more memory efficient, when a winner is
  387. promoted, we try to replace it by something else at a lower level, and the rule
  388. becomes that a cell and the two cells it tops contain three different items, but
  389. the top cell “wins” over the two topped cells.</p>
  390. <p>If this heap invariant is protected at all time, index 0 is clearly the overall
  391. winner. The simplest algorithmic way to remove it and find the “next” winner is
  392. to move some loser (let’s say cell 30 in the diagram above) into the 0 position,
  393. and then percolate this new 0 down the tree, exchanging values, until the
  394. invariant is re-established. This is clearly logarithmic on the total number of
  395. items in the tree. By iterating over all items, you get an <em>O</em>(<em>n</em> log <em>n</em>) sort.</p>
  396. <p>A nice feature of this sort is that you can efficiently insert new items while
  397. the sort is going on, provided that the inserted items are not “better” than the
  398. last 0’th element you extracted. This is especially useful in simulation
  399. contexts, where the tree holds all incoming events, and the “win” condition
  400. means the smallest scheduled time. When an event schedules other events for
  401. execution, they are scheduled into the future, so they can easily go into the
  402. heap. So, a heap is a good structure for implementing schedulers (this is what
  403. I used for my MIDI sequencer :-).</p>
  404. <p>Various structures for implementing schedulers have been extensively studied,
  405. and heaps are good for this, as they are reasonably speedy, the speed is almost
  406. constant, and the worst case is not much different than the average case.
  407. However, there are other representations which are more efficient overall, yet
  408. the worst cases might be terrible.</p>
  409. <p>Heaps are also very useful in big disk sorts. You most probably all know that a
  410. big sort implies producing “runs” (which are pre-sorted sequences, whose size is
  411. usually related to the amount of CPU memory), followed by a merging passes for
  412. these runs, which merging is often very cleverly organised <a class="footnote-reference brackets" href="#id2" id="id1" role="doc-noteref"><span class="fn-bracket">[</span>1<span class="fn-bracket">]</span></a>. It is very
  413. important that the initial sort produces the longest runs possible. Tournaments
  414. are a good way to achieve that. If, using all the memory available to hold a
  415. tournament, you replace and percolate items that happen to fit the current run,
  416. you’ll produce runs which are twice the size of the memory for random input, and
  417. much better for input fuzzily ordered.</p>
  418. <p>Moreover, if you output the 0’th item on disk and get an input which may not fit
  419. in the current tournament (because the value “wins” over the last output value),
  420. it cannot fit in the heap, so the size of the heap decreases. The freed memory
  421. could be cleverly reused immediately for progressively building a second heap,
  422. which grows at exactly the same rate the first heap is melting. When the first
  423. heap completely vanishes, you switch heaps and start a new run. Clever and
  424. quite effective!</p>
  425. <p>In a word, heaps are useful memory structures to know. I use them in a few
  426. applications, and I think it is good to keep a ‘heap’ module around. :-)</p>
  427. <p class="rubric">Footnotes</p>
  428. <aside class="footnote-list brackets">
  429. <aside class="footnote brackets" id="id2" role="doc-footnote">
  430. <span class="label"><span class="fn-bracket">[</span><a role="doc-backlink" href="#id1">1</a><span class="fn-bracket">]</span></span>
  431. <p>The disk balancing algorithms which are current, nowadays, are more annoying
  432. than clever, and this is a consequence of the seeking capabilities of the disks.
  433. On devices which cannot seek, like big tape drives, the story was quite
  434. different, and one had to be very clever to ensure (far in advance) that each
  435. tape movement will be the most effective possible (that is, will best
  436. participate at “progressing” the merge). Some tapes were even able to read
  437. backwards, and this was also used to avoid the rewinding time. Believe me, real
  438. good tape sorts were quite spectacular to watch! From all times, sorting has
  439. always been a Great Art! :-)</p>
  440. </aside>
  441. </aside>
  442. </section>
  443. </section>
  444. <div class="clearer"></div>
  445. </div>
  446. </div>
  447. </div>
  448. <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
  449. <div class="sphinxsidebarwrapper">
  450. <div>
  451. <h3><a href="../contents.html">Table of Contents</a></h3>
  452. <ul>
  453. <li><a class="reference internal" href="#"><code class="xref py py-mod docutils literal notranslate"><span class="pre">heapq</span></code> — Heap queue algorithm</a><ul>
  454. <li><a class="reference internal" href="#basic-examples">Basic Examples</a></li>
  455. <li><a class="reference internal" href="#priority-queue-implementation-notes">Priority Queue Implementation Notes</a></li>
  456. <li><a class="reference internal" href="#theory">Theory</a></li>
  457. </ul>
  458. </li>
  459. </ul>
  460. </div>
  461. <div>
  462. <h4>Previous topic</h4>
  463. <p class="topless"><a href="collections.abc.html"
  464. title="previous chapter"><code class="xref py py-mod docutils literal notranslate"><span class="pre">collections.abc</span></code> — Abstract Base Classes for Containers</a></p>
  465. </div>
  466. <div>
  467. <h4>Next topic</h4>
  468. <p class="topless"><a href="bisect.html"
  469. title="next chapter"><code class="xref py py-mod docutils literal notranslate"><span class="pre">bisect</span></code> — Array bisection algorithm</a></p>
  470. </div>
  471. <div role="note" aria-label="source link">
  472. <h3>This Page</h3>
  473. <ul class="this-page-menu">
  474. <li><a href="../bugs.html">Report a Bug</a></li>
  475. <li>
  476. <a href="https://github.com/python/cpython/blob/main/Doc/library/heapq.rst"
  477. rel="nofollow">Show Source
  478. </a>
  479. </li>
  480. </ul>
  481. </div>
  482. </div>
  483. <div id="sidebarbutton" title="Collapse sidebar">
  484. <span>«</span>
  485. </div>
  486. </div>
  487. <div class="clearer"></div>
  488. </div>
  489. <div class="related" role="navigation" aria-label="related navigation">
  490. <h3>Navigation</h3>
  491. <ul>
  492. <li class="right" style="margin-right: 10px">
  493. <a href="../genindex.html" title="General Index"
  494. >index</a></li>
  495. <li class="right" >
  496. <a href="../py-modindex.html" title="Python Module Index"
  497. >modules</a> |</li>
  498. <li class="right" >
  499. <a href="bisect.html" title="bisect — Array bisection algorithm"
  500. >next</a> |</li>
  501. <li class="right" >
  502. <a href="collections.abc.html" title="collections.abc — Abstract Base Classes for Containers"
  503. >previous</a> |</li>
  504. <li><img src="../_static/py.svg" alt="Python logo" style="vertical-align: middle; margin-top: -1px"/></li>
  505. <li><a href="https://www.python.org/">Python</a> &#187;</li>
  506. <li class="switchers">
  507. <div class="language_switcher_placeholder"></div>
  508. <div class="version_switcher_placeholder"></div>
  509. </li>
  510. <li>
  511. </li>
  512. <li id="cpython-language-and-version">
  513. <a href="../index.html">3.12.3 Documentation</a> &#187;
  514. </li>
  515. <li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &#187;</li>
  516. <li class="nav-item nav-item-2"><a href="datatypes.html" >Data Types</a> &#187;</li>
  517. <li class="nav-item nav-item-this"><a href=""><code class="xref py py-mod docutils literal notranslate"><span class="pre">heapq</span></code> — Heap queue algorithm</a></li>
  518. <li class="right">
  519. <div class="inline-search" role="search">
  520. <form class="inline-search" action="../search.html" method="get">
  521. <input placeholder="Quick search" aria-label="Quick search" type="search" name="q" id="search-box" />
  522. <input type="submit" value="Go" />
  523. </form>
  524. </div>
  525. |
  526. </li>
  527. <li class="right">
  528. <label class="theme-selector-label">
  529. Theme
  530. <select class="theme-selector" oninput="activateTheme(this.value)">
  531. <option value="auto" selected>Auto</option>
  532. <option value="light">Light</option>
  533. <option value="dark">Dark</option>
  534. </select>
  535. </label> |</li>
  536. </ul>
  537. </div>
  538. <div class="footer">
  539. &copy;
  540. <a href="../copyright.html">
  541. Copyright
  542. </a>
  543. 2001-2024, Python Software Foundation.
  544. <br />
  545. This page is licensed under the Python Software Foundation License Version 2.
  546. <br />
  547. Examples, recipes, and other code in the documentation are additionally licensed under the Zero Clause BSD License.
  548. <br />
  549. See <a href="/license.html">History and License</a> for more information.<br />
  550. <br />
  551. The Python Software Foundation is a non-profit corporation.
  552. <a href="https://www.python.org/psf/donations/">Please donate.</a>
  553. <br />
  554. <br />
  555. Last updated on Apr 09, 2024 (13:47 UTC).
  556. <a href="/bugs.html">Found a bug</a>?
  557. <br />
  558. Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.
  559. </div>
  560. </body>
  561. </html>
上海开阖软件有限公司 沪ICP备12045867号-1