![]() |
Python
1.0
|
Namespaces | |
_01a_fibo_rec | |
Fibonacci sequence. | |
Functions | |
def | _01a_fibo_rec.fiboDumb (n) |
This is a naive recursive version. More... | |
def | _01a_fibo_rec.fibo (n, p=False) |
Generates a Fibonacci number using a recursive algorithm that makes only n recursive calls. More... | |
def | _01a_fibo_rec.fib (n) |
Generates a Fibonacci number using a recursive algorithm that makes only n recursive calls. More... | |
def | _01a_fibo_rec.fib2 (n, p0, p1) |
Generates a Fibonacci number using a recursive algorithm that makes only n recursive calls. More... | |
def | _01a_fibo_rec.main () |