https://github.com/mirror4s/priority-queue
A priority queue implementation with binary heap.
https://github.com/mirror4s/priority-queue
heap java priority-queue
Last synced: 5 months ago
JSON representation
A priority queue implementation with binary heap.
- Host: GitHub
- URL: https://github.com/mirror4s/priority-queue
- Owner: MirRoR4s
- License: mit
- Created: 2024-11-18T07:52:41.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-20T05:26:43.000Z (about 1 year ago)
- Last Synced: 2025-04-02T04:29:49.763Z (9 months ago)
- Topics: heap, java, priority-queue
- Language: Java
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# priority-queue
A priority queue implementation based on binary heap.
## prior knowledge
- [slides](https://docs.google.com/presentation/d/1ySYTxnvoHJc7_2U0L90WH3kx0toWA4vpNiIR2r1vqKU)
- [video](https://www.youtube.com/playlist?list=PL8FaHk7qbOD50LnOXTSpYgnVJQTIVFsmI)
- [guide](https://sp18.datastructur.es/materials/lectures/lec24/lec24)
## reference
- [CS61B-Lab 10](https://sp18.datastructur.es/materials/lab/lab10/lab10)
- [gradescope](https://www.gradescope.com/courses/20666/assignments/85907/submissions/290549077#Test%20increasing%20priority.)
- [princeton implementation of a heap](https://algs4.cs.princeton.edu/24pq/MinPQ.java.html)