Introduction to recursion | Recursion series

Опубликовано: 14 Февраль 2026
на канале: WilliamFiset
22,317
495

An introduction to recursion and the components that make up a recursive function including the base case, the recursive call (transition), and the body.

Source code repository:
https://github.com/williamfiset/algor...

Video slides:
https://github.com/williamfiset/algor...

0:00 Introduction to recursive functions
1:24 Components of recursive functions
1:57 The base case
2:49 The recursive call and the transition
3:35 The body of the function
3:53 The Sum function
5:50 Summary