File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 3
3
4
4
Fibonacci heap data structure for JavaScript.
5
5
See [ docs] ( https://aureooms.github.io/js-fibonacci-heap/index.html ) .
6
+ Parent is [ @aureooms/js-heap ] ( https://github.com/aureooms/js-heap ) .
6
7
7
8
> :warning : The code needs a ES2015+ polyfill to run (` regeneratorRuntime ` ),
8
9
> for instance [ @babel/polyfill ] ( https://babeljs.io/docs/usage/polyfill ) .
9
10
11
+ ``` js
12
+ let heap = new FibonacciHeap ( compare .increasing ) ;
13
+ ```
14
+
10
15
[ ![ License] ( https://img.shields.io/github/license/aureooms/js-fibonacci-heap.svg )] ( https://raw.githubusercontent.com/aureooms/js-fibonacci-heap/master/LICENSE )
11
16
[ ![ Version] ( https://img.shields.io/npm/v/@aureooms/js-fibonacci-heap.svg )] ( https://www.npmjs.org/package/@aureooms/js-fibonacci-heap )
12
17
[ ![ Build] ( https://img.shields.io/travis/aureooms/js-fibonacci-heap/master.svg )] ( https://travis-ci.org/aureooms/js-fibonacci-heap/branches )
@@ -20,3 +25,9 @@ See [docs](https://aureooms.github.io/js-fibonacci-heap/index.html).
20
25
[ ![ Code coverage (cov)] ( https://img.shields.io/codecov/c/gh/aureooms/js-fibonacci-heap/master.svg )] ( https://codecov.io/gh/aureooms/js-fibonacci-heap )
21
26
[ ![ Code technical debt] ( https://img.shields.io/codeclimate/tech-debt/aureooms/js-fibonacci-heap.svg )] ( https://codeclimate.com/github/aureooms/js-fibonacci-heap/trends/technical_debt )
22
27
[ ![ Documentation] ( https://aureooms.github.io/js-fibonacci-heap/badge.svg )] ( https://aureooms.github.io/js-fibonacci-heap/source.html )
28
+
29
+
30
+ ## References
31
+
32
+ - [ Uncyclopedia Article on Fibonacci Heaps] ( https://en.wikipedia.org/wiki/Fibonacci_heap )
33
+ - [ Introduction to Algorithms Chapter 19] ( https://en.wikipedia.org/wiki/Introduction_to_Algorithms )
You can’t perform that action at this time.
0 commit comments