Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 418 Bytes

README.md

File metadata and controls

7 lines (5 loc) · 418 Bytes

binary_heap

An implementation of a binary heap in pure standard C++11, using C++ standard library features.

This code is mainly for educational purposes as the standard library already provides std::priority_queue which behaves similarly and is likely to be implemented in almost exactly the same way in most implementations of the standard library.