vote up 1 vote down star

We have a tree structure implemented using the DefaultMutableTreeNode specified in Java.

Is there any way of traversing it, that is inbuilt?

If not, please suggest other techniques.

flag

67% accept rate
What do you mean by parsing it? Typically you would parse an expression to build an internal representation (like the tree structure you already have). Do you simply want to traverse the tree? – Adamski Sep 24 at 10:38
Sorry for that.Yes I meant traversing it. – fixxxer Sep 24 at 10:42

1 Answer

vote up 3 vote down check

If you mean you want to traverse the tree you can call breadthFirstEnumeration() or depthFirstEnumeration() in order to iterate over all nodes in the tree.

Example:

DefaultMutableTreeNode root = ...

Enumeration en = root.depthFirstEnumeration();
while (en.hasMoreElements()) {

  // Unfortunately the enumeration isn't genericised so we need to downcast
  // when calling nextElement():
  DefaultMutableTreeNode node = (DefaultMutableTreeNode) en.nextElement();
}
link|flag
How do I get access to each node that returned by the search algorithm? Can you point me to a good resource, please. – fixxxer Sep 24 at 11:11
I've just added some example code. – Adamski Sep 24 at 12:10

Your Answer

Get an OpenID
or

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