Fibonacci Heap

Home > Computer Science > Algorithms and data structures > Heaps and Priority Queues > Fibonacci Heap

A Fibonacci heap is a collection of trees with minimum-heap property. It provides faster amortized time complexity for decrease key and merge operations than a binary heap, but slower for extract-min.