Skip to content

Commit 7cbed3a

Browse files
author
jumbuna
committed
RedBlackTree implementation
1 parent 7b20e44 commit 7cbed3a

File tree

3 files changed

+372
-31
lines changed

3 files changed

+372
-31
lines changed

.idea/workspace.xml

Lines changed: 57 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/com/jumbuna/ds/bst/BinarySearchTree.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
public abstract class BinarySearchTree <T extends Comparable<T>> {
1111
public BinarySearchTreeNode<T> root;
12-
private BinarySearchTreeNode<T> sentinel;
12+
BinarySearchTreeNode<T> sentinel;
1313
public int nodeCount;
1414

1515
public abstract void insert(T element);

0 commit comments

Comments
 (0)