Searched refs:root_ (Results 1 – 1 of 1) sorted by relevance
141 SplayTree.prototype.root_ = null; method in SplayTree148 return !this.root_;162 this.root_ = new SplayTree.Node(key, value);168 if (this.root_.key == key) {172 if (key > this.root_.key) {173 node.left = this.root_;174 node.right = this.root_.right;175 this.root_.right = null;177 node.right = this.root_;178 node.left = this.root_.left;[all …]