Heaps
This is another popular data structure implemented in C++ using an range.
ℹ️ What is a heap?
A heap is a binary search tree in which parent elements are always bigger than its child elements. Heap trees are optimized for the efficient sorting of elements.
You can create with std::make_heap
a heap. You can push with ...