js实现二叉树 //binary tree//add order remove findfunction tree() { var node = function(key) { this.left = null; ...