Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to implement a method to count all nodes of a tree from the root down. Basically I count the root then add the length of each of the roots child lists.

       public int size() 
       {
            int count = 1; //count the root node
            for (int i = 0; i < root.getChildren().size(); i++){
                count += (root.getChildren().get(i)).length() + 1;
            }
            return count;
        }

This is the solved solution.

share|improve this question
Did you mean count += instead of count =? – Thilo Oct 14 '10 at 3:46
1  
Don't delete/Remove your question text when you figure out the answer. If you want to dissassociate the question from yourself, flag it for a moderator. If you want to say it's been fixed, then answer the question and mark it as accepted or mark the answer that solved the problem for you. Your questions aren't just for you, they're for everyone that searches for a similar problem. – George Stocker Oct 15 '10 at 2:28
I changed the name in your account settings. Problem solved. – Bill the Lizard Oct 15 '10 at 4:11

2 Answers

up vote 3 down vote accepted

You can implement the size() method as a member of ArrayTreeNode. Use recursion. The size for a node is 1 plus the sum of the children's node sizes.

So inside your size() method you have two cases:

  1. If the node is a leaf, return 1. Here is no recursive call.

  2. If the node has children, call the size() method of all the children, calculate the sum, add 1 for the node and return that value.

Btw. why do you have both tree and root attributes in class ArrayTree? Isn't a root node enough? Why do you have a separate class ArrayTree at all? An ArrayTreeNode for itself is already a tree.

Where do you set the parent attribute of your ArrayTreeNode class? Wouldn't it be best if you set the parent inside the addChild() method to ensure that parent is always valid?

Update:

Ok, you asked for an example. I think if you are not used to recursion it's not so easy to get your head around it.

This is a method of class ArrayTreeNode:

public int size() {
  int sum = 1; // Count at least this node

  // Ask every child for its size. If this node is a leaf,
  // then no recursive call happens.
  // Otherwise call the size() method recursively for ervery 
  // child node. The child's size() method may also call its 
  // own childs size() method, adding another level of recursion.
  // But we can be sure that the recursion comes to an end because 
  // at every leaf the simple answer will be 1. 
  for(ArrayTreeNode<E> child: children) {
    sum += child.size();
  }

  // return our calculated size. 
  return sum;
}
share|improve this answer
I updated my answer with a small example. I hope this clarifies the idea. – vanje Oct 14 '10 at 19:17

I think that, I answered one of your question before. Source of MBTN.

And heres how I wrote size() method:

    public int size() {
        int result = 0;
        synchronized (this) {
            if (this._value != null)
                result++;
            if (this._left != null)
                result += this._left.size();
            if (this._right != null)
                result += this._right.size();
        }
        return result;
    }

Note that if your items are in array you could just check the array size. In case of MBTN, items are linked to each other and not in array, but you can use method toArrayList to display them in ArrayList, and use built-in function size:

new MBTN<String>("Green", "Red", "Blue").size();
new MBTN<String>("Green", "Red", "Blue").toArrayList().size(); 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.