Skip to content

Commit 29bd445

Browse files
committed
Clean BST - Binary Search Tree
1 parent 724947d commit 29bd445

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/main/java/org/alda/structure/tree/bst/BinarySearchTree.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
package org.alda.structure.tree.bst;
22

3-
import org.alda.common.Comparer;
4-
53
import java.util.ArrayList;
64

5+
/**
6+
* @author bcExpt1123
7+
*
8+
* Binary Search Tree
9+
* @param <T>
10+
*/
711
public class BinarySearchTree<T extends Comparable<T>> {
812
Node<T> root;
913

0 commit comments

Comments
 (0)