1 function H(node){
  2     return node==null?0:(Math.max.call(H(node.left),H(node.right))+1);
  3 }

_ipo
179 声望15 粉丝

bug