C
C#3y ago
surwren

Debugging recursive algorithms

I'm practicing recursion in MSVS and I tend to get lost after following the first "branch" of "nodes" in the recursive structure. I'm finding it difficult to understand, even with a piece of paper next to me. Are there plugins/other tools/other IDEs I can use to better identify where I am in the recursion flow?
1 Reply
RazorSharpFang
The call stack shows everything doesn't it? It shows you which line you entered on, and what you entered into, and how many layers deep you are?

Did you find this page helpful?