Skip to content

Commit 5829e16

Browse files
committed
Add FH to README
1 parent f21b9b2 commit 5829e16

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ or
8484
* [:movie_camera:](https://www.youtube.com/watch?v=RgITNht_f4Q)[Fenwick Tree](https://github.com/williamfiset/algorithms/tree/master/src/main/java/com/williamfiset/algorithms/datastructures/fenwicktree)
8585
* [Fenwick Tree (range query, point updates)](https://github.com/williamfiset/algorithms/tree/master/src/main/java/com/williamfiset/algorithms/datastructures/fenwicktree/FenwickTreeRangeQueryPointUpdate.java)
8686
* [Fenwick Tree (range update, point query)](https://github.com/williamfiset/algorithms/tree/master/src/main/java/com/williamfiset/algorithms/datastructures/fenwicktree/FenwickTreeRangeUpdatePointQuery.java)
87+
* [Fibonacci Heap](https://github.com/williamfiset/algorithms/tree/master/src/main/java/com/williamfiset/algorithms/datastructures/fibonacciheap)
8788
* [Set](https://github.com/williamfiset/algorithms/tree/master/src/main/java/com/williamfiset/algorithms/datastructures/set)
8889
* [:movie_camera:](https://www.youtube.com/watch?v=2E54GqF0H4s)[Hashtable](https://github.com/williamfiset/algorithms/tree/master/src/main/java/com/williamfiset/algorithms/datastructures/hashtable)
8990
* [Hashtable (double hashing)](https://github.com/williamfiset/algorithms/tree/master/src/main/java/com/williamfiset/algorithms/datastructures/hashtable/HashTableDoubleHashing.java)

src/main/java/com/williamfiset/algorithms/datastructures/fibonacciheap/FibonacciHeap.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
package com.williamfiset.algorithms.datastructures.fibonacciheap;
1+
/**
2+
* FibonacciHeap data structure implementation.
3+
*
4+
* Disclaimer: implementation based on:
5+
* http://staff.ustc.edu.cn/~csli/graduate/algorithms/book6/chap21.htm
6+
* Implementation credits to the respective code owners.
7+
*/
28

3-
// Disclaimer: implementation based on
4-
// "http://staff.ustc.edu.cn/~csli/graduate/algorithms/book6/chap21.htm"
5-
// Credits to the respective owner for code
9+
package com.williamfiset.algorithms.datastructures.fibonacciheap;
610

711
import static java.lang.Math.floor;
812
import static java.lang.Math.log;

0 commit comments

Comments
 (0)