Binary min heap implemented with reference
Project description
k3heap
k3heap is a binary min heap implemented with reference
k3heap is a component of pykit3 project: a python3 toolkit set.
In this module RefHeap is a binary min heap implemented with reference: a parent has two references to two children and a child has a parent reference to its parent.
RefHeap is not thread safe::
import k3heap
h = k3heap.RefHeap()
x = []
h.push(x)
h.push(x) # ValueError
h.push([]) # OK
Install
pip install k3heap
Synopsis
import k3heap
h = k3heap.RefHeap([5, 1, 4, 2, 3])
while h.size > 0:
print(h.pop())
Author
Zhang Yanpo (张炎泼) drdr.xp@gmail.com
Copyright and License
The MIT License (MIT)
Copyright (c) 2015 Zhang Yanpo (张炎泼) drdr.xp@gmail.com
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file k3heap-0.1.9.tar.gz.
File metadata
- Download URL: k3heap-0.1.9.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e0ac079f764c285ed20ca9f41410d072732c672a1b748ed0ec439c913030e6a
|
|
| MD5 |
f58d4d0b2675acfce6cbb45d887869bc
|
|
| BLAKE2b-256 |
8fc22fc5e9ceace7bda5acefcc87fd64295a786803b09eeb99027e4421452fb0
|
File details
Details for the file k3heap-0.1.9-py3-none-any.whl.
File metadata
- Download URL: k3heap-0.1.9-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ee3a480a5055300eb08c3fd4394d4d162ee5d7bc30024bd8cf6d6f33771b1f5
|
|
| MD5 |
af3c9f26249eede15c6bd6e673e48f6d
|
|
| BLAKE2b-256 |
bed38b3fca044f97263dce9b32c200c0bc191168ddc54d35eb118363559e0af3
|