Skip to content

Commit 8da32f3

Browse files
committed
Add credits to Robert Sedgewick, closes mgechev#53
1 parent 6ac8985 commit 8da32f3

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

src/sets/quickfind.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
* Keeps track of a set of elements partitioned into a
33
* number of disjoint (nonoverlapping) subsets.
44
* Allows to check whether the path between two nodes exists.
5+
* The algorithm is inspired by Robert Sedgewick's Java implementation.
6+
* <br>
7+
* The algorithm is inspired by Robert Sedgewick's Java implementation.
8+
* For further reading http://algs4.cs.princeton.edu/home/.
59
*
610
* @example
711
*

src/sets/quickunion.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* Keeps track of a set of elements partitioned into a
33
* number of disjoint (nonoverlapping) subsets.
44
* Allows to check whether the path between two nodes exists.
5+
* <br>
6+
* The algorithm is inspired by Robert Sedgewick's Java implementation.
7+
* For further reading http://algs4.cs.princeton.edu/home/.
58
*
69
* @example
710
*

src/sets/weightquickunion.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* Keeps track of a set of elements partitioned into a
33
* number of disjoint (nonoverlapping) subsets.
44
* Allows to check whether the path between two nodes exists.
5+
* <br>
6+
* The algorithm is inspired by Robert Sedgewick's Java implementation.
7+
* For further reading http://algs4.cs.princeton.edu/home/.
58
*
69
* @example
710
*

0 commit comments

Comments
 (0)