Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
6e0da82a
Commit
6e0da82a
authored
Aug 03, 2002
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document new heapify() function.
parent
c4c71805
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
Doc/lib/libheapq.tex
Doc/lib/libheapq.tex
+12
-5
No files found.
Doc/lib/libheapq.tex
View file @
6e0da82a
...
...
@@ -25,13 +25,16 @@ The API below differs from textbook heap algorithms in two aspects:
(a) We use zero-based indexing. This makes the relationship between the
index for a node and the indexes for its children slightly less
obvious, but is more suitable since Python uses zero-based indexing.
(b) Our pop method returns the smallest item, not the largest.
(b) Our pop method returns the smallest item, not the largest (called a
"min heap" in textbooks; a "max heap" is more common in texts because
of its suitability for in-place sorting).
These two make it possible to view the heap as a regular Python list
without surprises:
\code
{
\var
{
heap
}
[0]
}
is the smallest item, and
\code
{
\var
{
heap
}
.sort()
}
maintains the heap invariant!
To create a heap, use a list initialized to
\code
{
[]
}
.
To create a heap, use a list initialized to
\code
{
[]
}
, or you can
transform a populated list into a heap via function
\function
{
heapify()
}
.
The following functions are provided:
...
...
@@ -45,6 +48,10 @@ Pop and return the smallest item from the \var{heap}, maintaining the
heap invariant.
\end{funcdesc}
\begin{funcdesc}
{
heapify
}{
x
}
Transform list
\var
{
x
}
into a heap, in-place, in linear time.
\end{funcdesc}
Example of use:
\begin{verbatim}
...
...
@@ -53,17 +60,17 @@ Example of use:
>>> data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
>>> for item in data:
... heappush(heap, item)
...
...
>>> sorted = []
>>> while heap:
... sorted.append(heappop(heap))
...
...
>>> print sorted
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> data.sort()
>>> print data == sorted
True
>>>
>>>
\end{verbatim}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment