Searched refs:SplayTree (Results 1 – 1 of 1) sorted by relevance
85 splayTree = new SplayTree();131 function SplayTree() { class141 SplayTree.prototype.root_ = null;147 SplayTree.prototype.isEmpty = function() {160 SplayTree.prototype.insert = function(key, value) {162 this.root_ = new SplayTree.Node(key, value);171 var node = new SplayTree.Node(key, value);193 SplayTree.prototype.remove = function(key) {224 SplayTree.prototype.find = function(key) {236 SplayTree.prototype.findMax = function(opt_startNode) {[all …]