-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrecursion.py
55 lines (44 loc) · 1.8 KB
/
recursion.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!python
def fibonacci(n):
"""fibonacci(n) returns the n-th number in the Fibonacci sequence,
which is defined with the recurrence relation:
fibonacci(0) = 0
fibonacci(1) = 1
fibonacci(n) = fibonacci(n - 1) + fibonacci(n - 2), for n > 1"""
# Check if n is negative or not an integer (invalid input)
if n < 0 or not isinstance(n, int):
raise ValueError('fibonacci is undefined for n = {!r}'.format(n))
# Implement fibonacci_recursive, _memoized, and _dynamic below, then
# change this to call your implementation to verify it passes all tests
return fibonacci_recursive(n)
# return fibonacci_memoized(n)
# return fibonacci_dynamic(n)
def fibonacci_recursive(n):
# Check if n is one of the base cases
if n == 0 or n == 1:
return n
# Check if n is larger than the base cases
elif n > 1:
# Call function recursively and add the results together
return fibonacci_recursive(n - 1) + fibonacci_recursive(n - 2)
def fibonacci_memoized(n):
# TODO: Memoize the fibonacci function's recursive implementation here
pass
# Once implemented, change fibonacci (above) to call fibonacci_memoized
# to verify that your memoized implementation passes all test cases
def fibonacci_dynamic(n):
# TODO: Implement the fibonacci function with dynamic programming here
pass
# Once implemented, change fibonacci (above) to call fibonacci_dynamic
# to verify that your dynamic implementation passes all test cases
def main():
import sys
args = sys.argv[1:] # Ignore script file name
if len(args) == 1:
num = int(args[0])
result = fibonacci(num)
print('fibonacci({}) => {}'.format(num, result))
else:
print('Usage: {} number'.format(sys.argv[0]))
if __name__ == '__main__':
main()