A Fibonacci heap is an implementation of a priority queue that supports amortized O(1) insertion, merge, find-min, and decrease-key, along with amortized O(log n) delete and extract-min. When implemented with a Fibonacci heap, Dijkstra's algorithm and Prim's algorithm can be made to work in O(E + V ...

learn more… | top users | synonyms

0
votes
1answer
44 views

FibonacciHeap increase_key implementation

. Hi guys, I'm using Erel Segal's C++ STL FibonacciHeap http://ideone.com/9jYnv and I think it's lacking of a increase_key() method. /** * template Fibonacci Heap * * @ref ...
4
votes
1answer
95 views

Why do Fibonacci heaps need cascading cuts?

I'm learning f-heap from 'introduction to algorithms', and the 'decrease-key' operation really confuses me -- why does this need a 'cascading-cut' ? if this operation is removed: the cost of ...
3
votes
2answers
264 views

Dijkstra on Java: Getting Interesting Results Using a Fibonacci Heap vs. PriorityQueue

I recently made an initial comparison of the running time of Dijkstra's algorithm using two data structures, the Java-based PriorityQueue (based on a binary heap, if I'm not mistaken), and a Fibonacci ...
1
vote
1answer
68 views

Implementing Consolidate in Fibonacci heap

The pseudocode from Introduction to Algorithms states: for each node w in the root list of H link trees of the same degree But how to efficiently implement the for each root node part? Original ...
5
votes
1answer
172 views

Why is a Fibonacci heap called a Fibonacci heap?

The Fibonacci heap data structure has the word "Fibonacci" in its name, but nothing in the data structure seems to use Fibonacci numbers. According to the Wikipedia article: The name of Fibonacci ...
1
vote
1answer
191 views

How to show Fibonacci heap with n nodes can have height n? [closed]

I want to show that a Fibonacci heap with n nodes could have height n. I tried this with examples but I don't know how to show this in general.
1
vote
1answer
345 views

Fibonacci heaps: Insertion, Extract-Min, and Performance?

I was trying to learn about fibonacci heaps, the pseudocode for inserting an element in the heap was: Fibonacci-Heap-Insert(H,x) degree[x] := 0 p[x] := NIL child[x] := NIL left[x] := x right[x] := x ...
1
vote
2answers
433 views

STL for Fibonacci Heap?

where is the Fibonacci Heap in STL ? and if STL do not implement Fibonacci Heap what is the best practice to implement it using existing algorithms and containers in STL ?
1
vote
2answers
139 views

What is the purpose behind marking some of the nodes in Fibonacci heap?

This picture from Wikipedia article has three nodes of a Fibonacci heap marked in blue . What is the purpose of some of the nodes being marked in this data structure ?
2
votes
0answers
625 views

Boost Fibonacci Heap Decrease Operation

The new 'heap' boost library includes a fibonacci heap. The complexity of each implementation can be seen here: http://www.boost.org/doc/libs/1_51_0/doc/html/heap/data_structures.html. My question ...
1
vote
2answers
159 views

project idea for fibonacci heap

I'm in a beginner level computer programming class and I (along with 3 other students) want to implement a Fibonacci heap for a final project. Can anyone suggest some good applications of fibonacci ...
0
votes
1answer
250 views

How to insert an element to a Fibonacci tree?

Q. How would you insert an element to a Fibonacci tree. I was thinking, because fibonacci trees are like sorted tree. I have to either balance the right tree or the left tree. but how?
1
vote
1answer
225 views

Are all trees in Fibonacci heaps binomial trees?

Is it possible for a Fibonacci heap to contain a tree that isn't a binomial tree? If so, how would this happen? Can you give an example?
1
vote
1answer
367 views

Questions on the design and analysis of Fibonacci heaps

Fibonacci heaps are proving tricky to understand - even though CLRS has made a really good attempt to make it understand how it works. But some questions are really unclear to me: Why would you ...
1
vote
1answer
215 views

CLRS's Fibonacci Heap size(x) analysis has a flaw?

In CLRS's Introduction to Algorithms 3rd edition P.525, when it analyzes the size(x)'s lower bound, there is a sentence that I quote as "because adding children to a node cannot decrease the node’s ...
1
vote
1answer
161 views

Pell heap,just like Fibonacci heap

Is there any heap based on Pell sequence(or Pell number) instead of Fibonacci number(like the Fibonacci heap)?
4
votes
2answers
818 views

Priority Queue - Skip List vs. Fibonacci Heap

I am interested in implementing a priority queue to enable an efficient Astar implementation that is also relatively simple (the priority queue is simple I mean). It seems that because a Skip List ...
11
votes
3answers
2k views

Does sun provides a Java implementation of a Fibonacci heap?

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 (2) finding the minimum element. I ...
5
votes
3answers
3k views

How to implement Prim's algorithm with a Fibonacci heap?

I know Prim's algorithm and I know its implementation but always I skip a part that I want to ask now. It was written that Prim's algorithm implementation with Fibonacci heap is O(E + V log(V)) and my ...
0
votes
1answer
298 views

Using a fibonacci heap, is it possible/easy to represent neighbors aswell as minimum distance

I am trying to devise an implementation of dijkstras with fibonacci heaps. What I am trying to understand is if it is possible to represent, other than the minimum distance in O(logn) (with delete) ...
14
votes
3answers
3k views

Real world applications of Binary heaps and Fibonacci Heaps

What are the real world applications of Fibonacci heaps and binary heaps? It'd be great if you could share some instance when you used it to solve a problem. EDITED: Added binary heaps also. Curious ...
2
votes
1answer
1k views

Java: Prim's with Fibonacci heap? (JGraphT)

JGraphT has a nice Fibonacci Heap class. How can I use it to implement Prim's minimum spanning tree algorithm?
2
votes
1answer
1k views

Fibonacci Heap Issue

I've been working on a Fibonacci Heap implementation in Java for about a week now. It's the implementation based off of the CLRS book. I wanted to see if I would get any performance boost using it in ...
79
votes
3answers
15k views

Has anyone actually implemented a Fibonacci-Heap efficiently?

Has anyone of you ever implemented a Fibonacci-Heap? I did so a few years back, but it was several orders of magnitude slower than using array-based BinHeaps. Back then, I thought of it as a valuable ...