the weak heap family of priority queues in theory and
play

The Weak-Heap Family of Priority Queues in Theory and Praxis Stefan - PowerPoint PPT Presentation

The Weak-Heap Family of Priority Queues in Theory and Praxis Stefan Edelkamp 1) and Amr Elmasry 2) Jyrki Katajainen 2) 1) University of Bremen 2) University of Copenhagen These slides are available at http://www.cphstl.dk c Performance


  1. The Weak-Heap Family of Priority Queues in Theory and Praxis Stefan Edelkamp 1) and Amr Elmasry 2) Jyrki Katajainen 2) 1) University of Bremen 2) University of Copenhagen These slides are available at http://www.cphstl.dk c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (1)

  2. Our research program Provide the best bounds on the comparison complexity of priority- queue operations ( n the current size of the data structure): worst case per operation find - min : no element comparisons delete , delete - min : ∼ β lg n element comparisons Other operations: ∼ κ element comparisons where β and κ are constants. Full operation repertoire: insert , borrow , decrease , meld c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (2)

  3. New game Application = Request sequence (Think graph applications) worst case per sequence What is the best bound when handling a request sequence consisting of n insert , n delete - min , and m decrease operations? c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (3)

  4. Our result Rank-relaxed weak heaps are better than Fibonacci heaps! Data structure # element comparisons Fibonacci heap 2 m + 2 . 89 n lg n Rank-relaxed weak heap 2 m + 1 . 5 n lg n But they are not simpler ! Data structure Lines of code Binary heap 205 Fibonacci heap 296 Rank-relaxed weak heap 883 c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (4)

  5. Weak heap • A binary tree • The root only has a right child if any • Elements obey the weak-heap ordering: minimum for element x , every element in the right leaf registry subtree is ≥ x • With the exception of the root, the nodes that have at most one child are at the last two levels only Our representation pointer-based! c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (5)

  6. Rank-relaxed weak heap • λ ≤ ⌊ lg n ⌋ − 1 nodes marked; they may violate the weak-heap ordering insert : Insert a leaf, mark it, apply λ -reducing transformations as long as possible. decrease : Decrease the value in the given node, mark it, apply λ -reducing transformations mark registry as long as possible. minimum delete - min : Find the minimum (at the root or one of the marked nodes), borrow a leaf, fix the structure of the subtree that lost its root, mark the root of the fixed subtree, apply λ -reducing transformations as long as possible. Improvement in delete - min : If the mark registry is more than half full before the minimum finding, empty it. c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (6)

  7. Normal referee comments • Element comparisons are not relevant in practice! • Pairing heaps are much faster in practice! • No one would ever implement Fibonacci heaps since they are so complicated. This is you guys! Thank you! You pushed us to do some practical experiments! c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (7)

  8. Our play with Dijkstra’s algorithm priority queue a factor of two speed-up �� �� � minimum � � � �� �� source � � �� �� �� �� �� �� � � � scanned labelled unlabelled With your search engine, you will • Which algorithm find many experimental studies on • Which graph representation Dijkstra’s algorithm. Be critical • Which priority queue when you read the results. • Which tuning level c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (8)

  9. Graph representation CPH STL LEDA weights doubles • adjacency arrays • adjacency lists • simple • nice interface • static • fully dynamic • 16 m + 16 n + O (1) bytes for • parameterized a graph with m edges and n • 52 m + 60 n + O (1) bytes vertices [LEDA Book, § 6.14] tentative distance state edge pointer a factor of two speed-up vertex edge ... end points weight c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (9)

  10. Interaction � graph priority queue � � � � � minimum � � tentative distance � � �� �� �� �� � � �� �� � � a factor of two speed-up Combine the graph vertex and the priority- queue node [Knuth 1994] → improves cache behaviour c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (10)

  11. Tuning Element comparisons per n Running time per n [ µ s] Structure CPH STL LEDA 6.2 Structure CPH STL LEDA 6.2 Fibonacci Fibonacci Fibonacci Fibonacci Operation heap heap Operation heap heap insert insert n : 10 000 0 1 n : 10 000 0.10 0.18 n : 100 000 0 1 n : 100 000 0.09 0.15 n : 1 000 000 0 1 n : 1 000 000 0.09 0.15 decrease decrease n : 10 000 0 2 n : 10 000 0.03 0.06 n : 100 000 0 2 n : 100 000 0.05 0.22 a factor of two speed-up n : 1 000 000 0 2 n : 1 000 000 0.06 0.31 delete - min delete - min n : 10 000 16.2 29.9 n : 10 000 0.7 1.2 n : 100 000 21.2 38.3 n : 100 000 1.4 2.7 n : 1 000 000 26.2 46.5 n : 1 000 000 2.8 4.5 On my computer (Ubuntu, gcc , with -O3 ) c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (11)

  12. Parameterized design weak heap int, double, ... element type std::less, std::greater, ... comparator type node type weak−heap node, combined weak−heap node & graph node, ... relaxed heap modifier, ... modifier type leaf registry, ... level−registry type naive mark registry, eager mark registry, lazy mark registry, ... mark−registry type a factor of two less code • comparators shared • nodes shared • transformations shared • level registries shared • mark registries shared c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (12)

  13. What is the best? Our reference sequence Worst case per operation Theory: rank-relaxed weak heap insert —time: Fibonacci heap Dijkstra—time: binary heap [Fredman & Tarjan 1987] [Williams 1964] insert —comps: Fibonacci heap Dijkstra—comps: weak heap decrease —time: Fibonacci heap [Dutton 1993] decrease —comps: Fibonacci heap delete - min —time: weak queue [Vuillemin 1978] delete - min —comps: weak heap c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (13)

  14. Conclusions Earlier conjectures—see my SWAT-2010 slides Katajainen’s third conjecture: Our reference sequence can be han- dled with 2 m + n lg n + o ( n ) element comparisons in O ( m + n lg n ) time. Cache effects: We have neglected the cache behaviour of priority queues for too long. Source code: Our programs are available via the CPH STL website. c � Performance Engineering Laboratory 18th CATS, Melbourne, 2 Feb. 2012 (14)

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend