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 implementation regarding the performance of the structure, according to the problem. Right now, I'm doing a priority queue, but I would like to know not only the most appropriate implementation for this case, but the basics that allow me to choose an implementation in any other situation...

Other thing to consider is that I'm using haskell this time, so, if you know of any trick or something that would improve the implementation with this language, please let me know! but as before, comments about using other languages are welcome too!

Thanks! and sorry if the question is too basic, but i'm not familiar with heaps at all. This is the first time i'm facing the task of implementing one...

thanks again!

link|improve this question

1  
Eh, if this is the first time you're implementing a heap, just write a version using a binary heap first. Just make it abstract enough so that you can replace it with something else if you really have to. Binomial and Fibonacci heaps are much more complicated than binary ones, and are probably not worth struggling with (unless you just want to learn about them, of course). – Tikhon Jelvis Dec 2 '11 at 10:03
I like Leonardo heaps most. They appear in Dijkstras Smoothsort. – FUZxxl Dec 2 '11 at 16:57
Implement them all and benchmark them with your application. – augustss Dec 2 '11 at 19:10
@TikhonJelvis: well, I would like to learn about all of them. I posed this question because I need to choose one for this project (it's for college), but I would like to know which one is the best, and implementation tricks. For this project, I'm asked to have at most O(log n) time in insertion and extractMin operations. I'm know both binomial and fibonacci provide this time, but I would like to know how to choose. I don't know if binary is faster or slower than that, but well, that's my question! which one I choose? and why? thanks! – Throoze Dec 2 '11 at 23:50
1  
Check out this article. It lists the different times. You'll find a binary heap also satisfies your constraints. Since the binary heap is much simpler and more elegant, I would suggest using it even though the others may have better performance. – Tikhon Jelvis Dec 3 '11 at 0:02
show 1 more comment
feedback

2 Answers

up vote 2 down vote accepted

You might find the third article in http://themonadreader.files.wordpress.com/2010/05/issue16.pdf relevant.

link|improve this answer
On the third article, on page 45, when they define the data Succ rk a = BinomTree rk a ? rk a, there's a funny symbol, like a laid triangle, before the second rk a (instead of the '?' symbol I wrote)... I'm not very used to haskell syntax, could you please explain me what does that symbol mean?? thanks! – Throoze Dec 4 '11 at 5:22
@Throoze: The weird triangle is merely an infix data constructor for the type Succ. You can read that line as: data Succ rk a = Succ (BinomTree rk a) (rk a) – opqdonut Dec 4 '11 at 15:42
It's just a symbol to make the paper more readable. When writing the actual program, I typically write the infix constructor ":<:" opqdonut's explanation works, too. – Louis Wasserman Dec 5 '11 at 6:10
(Also, full disclosure: I am the author of that article.) – Louis Wasserman Dec 5 '11 at 6:11
feedback

First of all, you won't be implementing a standard heap in Haskell. You'll instead be implementing a persistent and functional heap. Sometimes the functional versions of classical data structures are as performant as the original (e.g. simple binary trees) but sometimes not (e.g. simple queues). In the latter case you will need a specialized functional data structure.

If you are not familiar with functional data structures, I suggest starting with Okasaki's great book or thesis (chapters of interest: at least 6.2.2, 7.2.2).


If all of that went over your head, I suggest starting with implementing a simple linked binary heap. (Making an efficient array-based binary heap in Haskell is a bit tedious.) Once that is done, you could try your hand at implementing a binomial heap by using Okasaki's pseudo code or even starting from scratch.

PS. This cstheory.se answer is great

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.