<< Previous exercise (5.27) | Index | Next exercise (5.29) >>
Reproduced the same results (except for constants):
┌─────────────────────┬──────────────────┬──────────────────┐ │ │ Maximum Depth │ Number of Pushes │ ├─────────────────────┼──────────────────┼──────────────────┤ │ Recursive Factorial │ 34n + -8 │ 8n + 6 │ ├─────────────────────┼──────────────────┼──────────────────┤ │ Iterative Factorial │ 37n + 41 │ 3n + 17 │ └─────────────────────┴──────────────────┴──────────────────┘
meteorgan