Difference between revisions of "CSC352 Red-Black Trees in Java"
Line 45: | Line 45: | ||
protected static final boolean BLACK = false; | protected static final boolean BLACK = false; | ||
− | protected Node root; // root of the BST | + | protected Node root = null; // root of the BST |
// BST helper node data type | // BST helper node data type |
Latest revision as of 12:00, 1 October 2013
--D. Thiebaut (talk) 20:02, 25 September 2013 (EDT)
The original file can be found here.