Skip to content

Instantly share code, notes, and snippets.

@JerrettDavis
JerrettDavis / gist:9884756
Created March 31, 2014 03:31
Red Black Tree
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;