Binomial heaps ============== * <> * <> * <> [[intro]] Introduction ------------ Binomial heap is a data structure that supports for example efficient merge of two heaps, insertions, deletions or access to the minimum element. All these operations are logarithimc in the worst case. If the merge is not significat, it is usually better to use simplier <>. They are defined in `ucw/binheap.h` as <>, some common definitions are also in `ucw/binheap-node.h`. !!ucw/binheap-node.h !!ucw/binheap.h