Has anyone written or thought about writing an iterator for a composite (tree) structure without using recursion? If so can you share your ideas? Thks
Edit: I was thinking of Java for lang.
|
1
|
|
|
|
|
|
Traversing a tree without recursion is simple enough. Assuming a binary tree, each node presumably has three references to other nodes. Left child, right child and parent.
So assuming a depth-first left to right iteration order, you follow the left-child references in a while-lop (pseudocode You haven't specified a language, but since you want to avoid recursion, I'm going to assume it's an imperative language of some sort, and then the above should be possible. In short, your iterator must hold a reference to the current node, and some information about which way it's travelling. |
||||
|