0
0
DSA Typescriptprogramming~10 mins

Recursion vs Iteration When Each Wins in DSA Typescript - Visual Comparison

Choose your learning style9 modes available
Concept Flow - Recursion vs Iteration When Each Wins
Start Problem
Choose Approach
Use Recursion
Recursive Calls
Base Case?
Return Result
Solution
Shows the decision flow between using recursion or iteration to solve a problem, ending with the solution.
Execution Sample
DSA Typescript
function factorialRec(n: number): number {
  if (n <= 1) return 1;
  return n * factorialRec(n - 1);
}

function factorialIter(n: number): number {
  let result = 1;
  for (let i = 2; i <= n; i++) result *= i;
  return result;
}
Calculates factorial of n using recursion and iteration.
Execution Table
StepOperationCall Stack / Loop IndexIntermediate ResultVisual State
1Call factorialRec(4)Stack: [4]N/AStack: factorialRec(4)
2Call factorialRec(3)Stack: [4,3]N/AStack: factorialRec(4) -> factorialRec(3)
3Call factorialRec(2)Stack: [4,3,2]N/AStack: factorialRec(4) -> factorialRec(3) -> factorialRec(2)
4Call factorialRec(1)Stack: [4,3,2,1]Return 1Stack bottom reached, base case
5Return from factorialRec(1)Stack: [4,3,2]1Return 1 to factorialRec(2)
6Calculate 2 * 1Stack: [4,3,2]2Return 2 to factorialRec(3)
7Return from factorialRec(2)Stack: [4,3]2Return 2 to factorialRec(3)
8Calculate 3 * 2Stack: [4,3]6Return 6 to factorialRec(4)
9Return from factorialRec(3)Stack: [4]6Return 6 to factorialRec(4)
10Calculate 4 * 6Stack: [4]24Return 24 to main
11Return from factorialRec(4)Stack: []24Stack empty, recursion ends
12Start factorialIter(4)i=2result=1Loop start
13Multiply result by i=2i=2result=2result updated to 2
14Increment i to 3i=3result=2Loop continues
15Multiply result by i=3i=3result=6result updated to 6
16Increment i to 4i=4result=6Loop continues
17Multiply result by i=4i=4result=24result updated to 24
18Increment i to 5i=5result=24Loop ends (i > n)
19Return resultN/A24Iteration ends, result returned
💡 Recursion ends when base case n <= 1 is reached; iteration ends when loop index exceeds n.
Variable Tracker
VariableStartAfter Step 4After Step 6After Step 10After Step 11After Step 12After Step 17Final
n (recursion)41 (base case)24N/AN/AN/AN/A
Call Stack Depth14310N/AN/AN/A
i (iteration)N/AN/AN/AN/AN/A245
result (iteration)1N/AN/AN/AN/A12424
Key Moments - 3 Insights
Why does recursion use a call stack and iteration uses a loop variable?
Recursion creates new function calls stacked on top of each other (see steps 1-11 in execution_table), while iteration uses a single loop variable to repeat actions (see steps 12-19). This difference affects memory use and flow control.
When does recursion stop calling itself?
Recursion stops when it reaches the base case (n <= 1), as shown at step 4 where factorialRec(1) returns 1, ending further calls.
Why might iteration be preferred over recursion?
Iteration uses less memory because it doesn't add to the call stack. This is clear in steps 12-19 where a simple loop updates variables without stacking calls.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table, what is the call stack depth at step 6?
A3
B4
C2
D1
💡 Hint
Check the 'Call Stack / Loop Index' column at step 6 in execution_table.
At which step does the iteration loop end?
AStep 17
BStep 19
CStep 18
DStep 12
💡 Hint
Look for the step where the loop index exceeds n in execution_table.
If the base case in recursion was changed to n <= 0, what would happen?
ARecursion would stop earlier
BRecursion would never stop for n=1
CNo change in recursion behavior
DIteration would be affected
💡 Hint
Refer to the base case condition in execution_table steps 3-4.
Concept Snapshot
Recursion calls the same function with smaller inputs until a base case stops it.
Iteration uses loops to repeat actions until a condition fails.
Recursion uses more memory due to call stack; iteration is memory efficient.
Use recursion for problems naturally defined by smaller subproblems.
Use iteration for simple repeated tasks or when memory is limited.
Full Transcript
This visualization compares recursion and iteration using factorial calculation. Recursion breaks the problem into smaller calls until a base case is reached, stacking calls in memory. Iteration uses a loop to multiply numbers step by step. The execution table shows recursion call stack growth and return values, and iteration loop progress with variable updates. Key moments clarify why recursion uses a call stack and when it stops, and why iteration can be more memory efficient. The quiz tests understanding of call stack depth, loop termination, and base case importance.