Skip to content

Commit e7fa878

Browse files
committedJul 3, 2017
Javadoc clean-up
1 parent eb56f0e commit e7fa878

File tree

106 files changed

+731
-596
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+731
-596
lines changed
 

‎src/com/jwetherell/algorithms/data_structures/AVLTree.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
* trees are more rigidly balanced, they are faster than red-black trees for
1313
* lookup intensive applications. However, red-black trees are faster for
1414
* insertion and removal.
15-
*
16-
* http://en.wikipedia.org/wiki/AVL_tree
17-
*
15+
* <p>
16+
* @see <a href="https://en.wikipedia.org/wiki/AVL_tree">AVL Tree (Wikipedia)</a>
17+
* <br>
1818
* @author Justin Wetherell <phishman3579@gmail.com>
1919
*/
2020
public class AVLTree<T extends Comparable<T>> extends BinarySearchTree<T> {

‎src/com/jwetherell/algorithms/data_structures/BTree.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* two children. Unlike self-balancing binary search trees, the B-tree is
1515
* optimized for systems that read and write large blocks of data. It is
1616
* commonly used in databases and file-systems.
17-
*
18-
* http://en.wikipedia.org/wiki/B-tree
19-
*
17+
* <p>
18+
* @see <a href="https://en.wikipedia.org/wiki/B-tree">B-Tree (Wikipedia)</a>
19+
* <br>
2020
* @author Justin Wetherell <phishman3579@gmail.com>
2121
*/
2222
@SuppressWarnings("unchecked")

0 commit comments

Comments
 (0)