vote up 5 vote down star

Hi,

First of all, I swear this is not homework, it's a question I was asked in an interview. I think I made a mess of it (though I did realise the solution requires recursion). Here is the question:

Implement the count() method which returns the number of nodes in a tree. If a node doesn't have either a left or right child, the relevant getXXChild() method will return null

class Tree {

  Tree getRightChild() {
    // Assume this is already implemented
  }

  Tree getLeftChild() {
    // Assume this is already implemented
  }

  int count() {
    // Implement me
  }
}

My reason for asking the question is simply curious to see the correct solution, and thereby measure how bad mine was.

Cheers, Tony

flag
// No.. you didn't say please – Steven Robbins Feb 13 at 21:01
@Tony Can you post whatever solution you came up with? It might be of more value to you if we point problems with your design rather than just throwing the correct answer out there. – Outlaw Programmer Feb 13 at 21:07
If this is an interview question, the interviewer probably not only wants to see 'the code' (many fine solutions posted) but also a discussion of recursion versus iteration (see e.g. David Hanak's answer) and stack versus heap. – Brian Feb 13 at 21:20
int numberOfRightKids = getRightChild() != null ? getRightChild().count() : 0; int numberOfLeftKids = getLeftChild() != null ? getLeftChild().count() : 0 int me = 1; return numberOfLeftKids + numberOfRightKids + me; – Chris Kessel Feb 13 at 22:05
Java doesn't have a Functor interface? LOL. – jrockway Feb 14 at 0:46
show 1 more comment

10 Answers

vote up 1 vote down
class Tree {

  Tree getRightChild() {
    // Assume this is already implemented
  }

  Tree getLeftChild() {
    // Assume this is already implemented
  }

  int count() {
   return 1 
      + getRightChild() == null? 0 : getRightChild().count()
      + getLeftChild() == null? 0 : getLeftChild().count();
  }
}
link|flag
vote up 0 vote down

Of course, if you want to avoid visiting every node in your tree when you count, and processing time is worth more to you than memory, you can cheat by creating your counts as you build your tree.

  1. Have an int count in each node, initialized to one, which respresents the number of nodes in the subtree rooted in that node.

  2. When you insert a node, before returning from your recursive insert routine, increment the count at the current node.

i.e.

public void insert(Node root, Node newNode) {
  if (newNode.compareTo(root) > 1) {
    if (root.right != null) 
      insert(root.right, newNode);
    else
      root.right = newNode;
  } else {
    if (root.left != null)
      insert(root.left, newNode);
    else
      root.left = newNode;
  }
  root.count++;
}

Then getting the count from any point just involves a lookup of node.count

link|flag
vote up 6 vote down

I like this better because it reads:

return count for left + count for rigth + 1

  int count() {
      return  countFor( getLeftChild() ) + countFor( getRightChild() ) + 1;
  }
  private int countFor( Tree tree )  { 
       return tree == null ? 0 : tree.count();
  }

A little more towards literate programming.

BTW, I don't like the getter/setter convention that is so commonly used on Java, I think a using leftChild() instead would be better:

  return countFor( leftChild() ) + countFor( rightChild() ) + 1;

Just like Hoshua Bloch explains here http://www.youtube.com/watch?v=aAb7hSCtvGw at min. 32:03

If you get it rigth your code reads...

BUT, I have to admit the get/set convention is now almost part of the language. :)

For many other parts, following this strategy creates self documenting code, which is something good.

Tony: I wonder, what was your answer in the interview.

link|flag
+1 good points on readability issues. – Outlaw Programmer Feb 14 at 0:48
-1 points on going against the JavaBean idiom, which has proven hugely useful. (I upscored you anyway!) – oxbow_lakes Feb 21 at 11:24
@oxbow: Yeap, the Java bean model never got the desired effect ( which was to have truly standalone beans ) but the idiom was been very beneficial, specially in webdevelopment. – Oscar Reyes Feb 21 at 19:06
vote up 0 vote down
int count()

{
   int retval = 1;
    if(null != getRightChild()) retval+=getRightChild().count();
    if(null != getLeftChild()) retval+=getLeftChild().count();
    return retval;

}

God I hope I didn't make a mistake.

EDIT: I did actually.

link|flag
Your if statements need to explicitly check == null, otherwise this won't work for Java. – Outlaw Programmer Feb 13 at 21:00
Yep, recalled that when I posted :) – mannicken Feb 13 at 21:01
vote up 2 vote down

You can count the tree by traversing it many ways. Simply preorder traversal, the code would be (based on the functions you defined):

int count() {
    count = 1;
    if (this.getLeftChild() != null)
        count += this.getLeftChild().count();
    if (this.getRightChild() != null)
        count += this.getRightChild().count();
    return count;
}
link|flag
vote up 3 vote down
return (getRightChild() == null ? 0 : getRightChild.count()) + (getLeftChild() == null ? 0 : getLeftChild.count()) + 1;

Or something like that.

link|flag
I wouldn't write this as a one-liner in practice but the fact that you can makes a point about the simplicity... +1 – David Feb 13 at 21:02
Why not? Can't beat a bit of ternary abuse :-) – Steven Robbins Feb 13 at 21:02
If you wrote that during an interview, i would be annoyed not impressed. – Kip Feb 13 at 21:14
@Kip Not as annoyed as I would be if I ended up in a Java interview :-) – Steven Robbins Feb 13 at 21:22
vote up 19 vote down
int count() {
  Tree right = getRightChild();
  Tree left = getLeftChild();
  int c = 1;                                      // count yourself!
  if ( right != null ) c += right.count();        // count sub trees
  if ( left != null ) c += left.count();          // ..
  return c;
}
link|flag
Edited "return count" to "return c". :-) – Bill Karwin Feb 13 at 20:57
heh oops - thanks – Blorgbeard Feb 13 at 20:58
vote up 0 vote down

This is a standard recursion problem:

count():
    cnt = 1 // this node
    if (haveRight) cnt += right.count
    if (haveLeft)  cnt += left.count
return cnt;

Very inefficient, and a killer if the tree is very deep, but that's recursion for ya...

link|flag
Your implementation is correct, but it isn't in Java. – Paul Tomblin Feb 13 at 20:58
What language is it? – mannicken Feb 13 at 21:02
Python? Well, I guess not even entirely python.. – David Hanak Feb 13 at 21:07
but that's as efficient as it gets, without caching higher-level counts, right? – Kip Feb 13 at 21:12
The algorithm is fine, it just doesn't really answer the original question. Plus, haveLeft and haveRight, while obvious, aren't declared here. – Outlaw Programmer Feb 13 at 21:19
show 1 more comment
vote up 2 vote down

Something like this should work:

int count()
{
    int left = getLeftChild() == null ? 0 : getLeftChild().count();
    int right = getRightChild() == null ? 0 : getRightCHild().count();

    return left + right + 1;
}
link|flag
This is wrong. Add one :) – antti.huima Feb 13 at 20:55
Remember to count yourself :P – Blorgbeard Feb 13 at 20:57
Pfft what are you guys talking about, I always added 1 ;-) Thanks! – Outlaw Programmer Feb 13 at 20:57
Who said count should return null? The problem says "The relevant method" so it is referring to the "leftNode/rightNode". That was your point or a missed something? – Oscar Reyes Feb 13 at 21:03
I too thought he meant the count() method should return null if there are no child nodes. It wasn't clear until the second reading. When he said "relevant method", I assumed he meant the method relevant to this question. – Kip Feb 13 at 21:10
show 1 more comment
vote up 9 vote down

A trivial recursive solution:

int count() {
   Tree l = getLeftTree();
   Tree r = getRightTree();
   return 1 + (l != null ? l.count() : 0) + (r != null ? r.count() : 0);
}

A less trivial non-recursive one:

int count() {
    Stack<Tree> s = new Stack<Tree>();
    s.push(this);
    int cnt = 0;
    while (!s.empty()) {
        Tree t = s.pop();
        cnt++;
        Tree ch = getLeftTree();
        if (ch != null) s.push(ch); 
        ch = getRightTree();
        if (ch != null) s.push(ch); 
    }
    return cnt;
}

The latter is probably slightly more memory-efficient, because it replaces recursion with a stack and an iteration. It's also probably faster, but its hard to tell without measurements. A key difference is that the recufsive solution uses the stack, while the non-recursive solution uses the heap to store the nodes.

Edit: Here's a variant of the iterative solution, which uses the stack less heavily:

int count() {
    Tree t = this;
    Stack<Tree> s = new Stack<Tree>();
    int cnt = 0;
    do {
        cnt++;
        Tree l = t.getLeftTree();
        Tree r = t.getRightTree();
        if (l != null) {
            t = l;
            if (r != null) s.push(r);
        } else if (r != null) {
            t = r;
        } else {
            t = s.empty() ? null : s.pop();
        }
    } while (t != null);
    return cnt;
}

Whether you need a more efficient or a more elegant solution naturally depends on the size of your trees and on how often you intend to use this routine. Rembemer what Hoare said: "premature optimization is the root of all evil."

link|flag
This won't compile with Java. Unfortunately, you need to explicitly test if something == null, so you need l== null and r == null here. – Outlaw Programmer Feb 13 at 20:56
Thanks! It was some time ago I actively used Java. – David Hanak Feb 13 at 21:03
How about allowing nulls to be pushed onto the stack, but only incrementing the counter if the object popped off is not null. You can remove 1 if statement this way, and also you can then do s.push(getLeft()) and s.push(getRight()) – Outlaw Programmer Feb 13 at 21:06
I beleive that would be slightly more expensive on the CPU (extra push/pop), but its definitely an option, and, like you said, one line fiewer. :-) – David Hanak Feb 13 at 21:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.