This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package collections; | |
| import collections.BinarySearchTree.Node; | |
| public class RedBlackBST<E extends Comparable<E>> { | |
| private static final int RED = 0; | |
| private static final int BLACK = 1; | |
| Node root; |