https://github.com/robin-thomas/min-heap
Min Heap
https://github.com/robin-thomas/min-heap
Last synced: over 1 year ago
JSON representation
Min Heap
- Host: GitHub
- URL: https://github.com/robin-thomas/min-heap
- Owner: robin-thomas
- License: mit
- Created: 2014-08-13T10:36:14.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2016-01-26T13:14:33.000Z (over 10 years ago)
- Last Synced: 2023-04-14T01:41:45.712Z (over 3 years ago)
- Language: C
- Homepage: http://robin-thomas.github.io/min-heap
- Size: 59.6 KB
- Stars: 20
- Watchers: 1
- Forks: 24
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Min Heap
========
Min Heap is a data structure that is used extensively in various operations like sorting, job scheduling and various other operations. A binary min heap is a min heap, with each node having atmost two children. Various operations like insertion, deletion and traversal are possible on a min heap, and their C code is provided in this repository.
To learn more about min heap, have a look at: [A Study In Min Heap](http://robin-thomas.github.io/min-heap/)