The binomial-heap tag has no wiki summary.
7
votes
2answers
291 views
binary heap vs binomial heap vs fibonacci heap, regarding performance for a priority queue
Could someone please explain me how should I decide whether to use one or another heap implementation, among the ones mentioned in the title?
I would like an answer to guide me on choosing the ...
3
votes
2answers
224 views
What is the difference between binary heaps and binomial heaps?
I need to know the main difference between binary and binomial heaps regardless of the their structure difference that binary heaps can have only two child (tree representation) and binomial heaps can ...
1
vote
2answers
132 views
When would it be preferred to implement a priority queue with a Singly Linked List over a Heap?
I recently just started up a project with some code that has been already written. I decided to look into his implementation and found that he implemented a Priority Queue with a Singly Linked List.
...
0
votes
0answers
36 views
References are not matching
I have a class with the following definition,
class BinomialNode
{
public int key; // The key value
public int x_point; // x co-ordinate for drawing
public int y_point; // ...
0
votes
1answer
75 views
implement decreasing key in binomial heap
in the binomial heap structure, we know only the pointer that points to the min node, but how can I decrease the key of arbitrary node? in this case, first of all, I should find this node and then ...