CSC301: Tree code: Is this correct? [41/56] |
public int size () { return size (root, 0); } private static int size (Node x, int sz) { if (x == null) return sz; sz = sz + 1; size (x.left, sz); size (x.right, sz); return sz; }
Is this correct?
No. Mistake here is to think of sz
as shared among
the function calls.