I have a recursive function that returns all subtree nodes, given the starting root node.

private IEnumerable<Node> getAllNodesRecursively(Node subnode)
{
    foreach (Node node in subnode.Nodes)
        getAllNodesRecursively(node);

    yield return subnode;
}

For the following tree structure:

A
|
+--B
|
+--C
|  |
|  +--D
|
+--E

When I try to iterate as such:

foreach (Node n in getAllNodesRecursively(a))
{
    Console.WriteLine(n);
}

the function returns the only the A value.

I wish to use yield-return with recursion and retrieve elements in the Preorder (A, B, C, D, E in this example).

(If I put the yield return before the foreach, the foreach would never happen).

Is this possible?

link|improve this question

78% accept rate
Did you try that the foreach is not called if you put the yield return in front? I guess it will be called. – okrumnow Feb 3 at 9:55
Yes, you were right. Yield return does not skip the rest of the code. It seems it's just a syntactic sugar to allow value return and still keep the function running. My bad. – Kornelije Petak Feb 3 at 10:24
feedback

2 Answers

up vote 3 down vote accepted

Have you tried something like:

private IEnumerable<Node> getAllNodesRecursively(Node subnode) 
{ 
    // Return the parent before its children
    yield return subnode; 

    foreach (Node node in subnode.Nodes) 
    {
        foreach(Node n in getAllNodesRecursively(node))
        {
            yield return n;
        }
    }
} 

Your implementation is calling getAllNodesRecursively recursively, but ignoring its return value.

link|improve this answer
This works, but why do I have to iterate again (inner foreach)? Why does the iterator method does not allow recursion as it is? I've tried with the debugger and it simply skipped my recursive call unless it's used in an iteration (such as foreach). Why is that? – Kornelije Petak Feb 3 at 10:20
@ChristianHayter "Won't that return all except the top node twice?" No. – Joe Feb 3 at 10:28
feedback

Yes it's possible, just put the yield return before the foreach. You are thinking of the behaviour of a normal return statement.

link|improve this answer
I've modified my post, because I was wrong in what will be shown. Only the first element is returned. If I put the yield return before the foreach, the same thing happens. How come? – Kornelije Petak Feb 3 at 10:04
Hmmm. I'm not in a position to try this myself right now. Have you tried stepping through the code with the debugger? – Christian Hayter Feb 3 at 10:09
Debugger simply skips the recursive call. That's an interesting one. – Kornelije Petak Feb 3 at 10:17
feedback

Your Answer

 
or
required, but never shown

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