I've started learning data structures and algorithms and have been diving into recursion. However, I'm struggling to visualize how the recursive function calls work. Is there a specific method or resource you recommend to help me better understand this concept? I prefer to visualize things instead of just memorizing them.
1 Answer
Check out this video on recursion! It covers pretty much everything you need to know: [Understanding Recursion](https://www.youtube.com/watch?v=YuaJ8x_NcLw). It might not explain all the whys of choosing recursion over iteration, but it'll definitely help you visualize how recursion works better!
Thanks for the link! I'll watch it later.