在之前的基础上 变化了一下
/*查找最小值*/
var minNode = function(node){
if(node !== null){
if(node.left !== null){
minNode(node.left);
}
else{callback(node.key);}
}
}
this.min = function(){
minNode(root);
}
/*查找最小值end*/
/*查找最大值*/
var maxNode = function(node){
if(node !== null){
if(node.right !== null){
maxNode(node.right);
}
else{callback(node.key);}
}
}
this.max = function(){
maxNode(root);
}
/*查找最大值end*/