I was looking at the different kind of heap data structures.
The Fibonacci heap seems to have the better worst case complexity for (1) insertion, (2) deletion and (
But why they did not use a Fibonacci heap?
Probably because those heaps have a lot more overhead per entry than binary keys.
Also, is there an implementation of Fibonacci heap in Java.util?
No, but