Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/data-structures/splay-tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

/**
* Splay tree.
* http://en.wikipedia.org/wiki/Splay_tree
* {@link http://en.wikipedia.org/wiki/Splay_tree}
* @public
* @constructor
*/
Expand Down
2 changes: 1 addition & 1 deletion src/sets/quickfind.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* The algorithm is inspired by Robert Sedgewick's Java implementation.
* <br>
* The algorithm is inspired by Robert Sedgewick's Java implementation.
* For further reading http://algs4.cs.princeton.edu/home/.
* {@link http://algs4.cs.princeton.edu/home/}
*
* @example
*
Expand Down
2 changes: 1 addition & 1 deletion src/sets/quickunion.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Allows to check whether the path between two nodes exists.
* <br>
* The algorithm is inspired by Robert Sedgewick's Java implementation.
* For further reading http://algs4.cs.princeton.edu/home/.
* {@link http://algs4.cs.princeton.edu/home/}
*
* @example
*
Expand Down
2 changes: 1 addition & 1 deletion src/sets/weightquickunion.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Allows to check whether the path between two nodes exists.
* <br>
* The algorithm is inspired by Robert Sedgewick's Java implementation.
* For further reading http://algs4.cs.princeton.edu/home/.
* {@link http://algs4.cs.princeton.edu/home/}
*
* @example
*
Expand Down