private int height (Node t){ if(t==null) return 0; else return 1+Math.max (height(t.left), height(t.right)); }
Không có nhận xét nào: