<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>I'm partial to skew heaps, mainly because they are so elegant.</div><div><br></div><div><a href="http://www.cse.yorku.ca/~andy/courses/4101/lecture-notes/LN5.pdf">http://www.cse.yorku.ca/~andy/courses/4101/lecture-notes/LN5.pdf</a></div><div><br></div><div>Something like this (although I've done only basic testing):</div><div><br></div><div><div>-module(skew).</div><div>-export([new/0, in/2, out/1]).</div><div><br></div><div>new() -></div><div>    [].</div><div><br></div><div>in(X, Heap) -></div><div>    merge({X,[],[]}, Heap).</div><div><br></div><div>out([]) -></div><div>    error;</div><div>out({X, L, R}) -></div><div>    {X, merge(L, R)}.</div><div><br></div><div>merge({P0,Pl,Pr}, {Q0,_,_} = Q) when P0 < Q0 -></div><div>    {P0, Pr, merge(Pl,Q)};</div><div>merge({P0,_,_} = P, {Q0,Ql,Qr}) when P0 > Q0 -></div><div>    {Q0, Qr, merge(Ql,P)};</div><div><div>merge({P0,Pl,Pr} = P,{P0,Ql,Qr}) ->   % equal roots</div><div>    merge(P, merge(merge(Pl,Pr), merge(Ql,Qr)));</div></div><div>merge([], Q) -> Q;</div><div>merge(P, []) -> P.</div></div><div><br></div><div>The cost is amortized O(log N) for in/2 and out/1. For peeking at the min, it's O(1).</div><div><br></div><div>BR,</div><div>Ulf W</div><br><div><div>On 9 Nov 2011, at 04:33, Michael Truog wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div>I was looking at Erlang priority queue implementations and the Riak/RabbitMQ one seemed a bit slow.  I have a different implementation with the same API here: <a href="https://github.com/okeuday/pqueue/blob/master/src/pqueue.erl">https://github.com/okeuday/pqueue/blob/master/src/pqueue.erl</a><br><br>The results from my test are here: <a href="http://okeuday.livejournal.com/19187.html">http://okeuday.livejournal.com/19187.html</a><br><br>The implementation has "in" operations that are roughly 3 times faster (300%), however, the "out" operation became roughly 30% slower.  So, as long as the priority queue is storing a decent amount of items, this data structure should provide better speed.  The implementation is limited to a specific priority range: -20 (high) to 20 (low).<br>_______________________________________________<br>erlang-questions mailing list<br><a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>http://erlang.org/mailman/listinfo/erlang-questions<br></div></blockquote></div><br><div>
<div>Ulf Wiger, CTO, Erlang Solutions, Ltd.</div><div><a href="http://erlang-solutions.com">http://erlang-solutions.com</a></div><div><br></div><br class="Apple-interchange-newline">
</div>
<br></body></html>