2016-09-26 10:28:43 +00:00
|
|
|
"""
|
|
|
|
This is a pure Python implementation of Dynamic Programming solution to the fibonacci sequence problem.
|
|
|
|
"""
|
2016-09-26 10:26:23 +00:00
|
|
|
|
2016-09-26 10:38:40 +00:00
|
|
|
|
|
|
|
class Fibonacci:
|
2016-09-26 10:39:59 +00:00
|
|
|
|
2016-09-26 10:26:23 +00:00
|
|
|
def __init__(self, N=None):
|
2017-04-11 22:10:52 +00:00
|
|
|
self.fib_array = []
|
2016-09-26 10:26:23 +00:00
|
|
|
if N:
|
2016-09-26 10:38:40 +00:00
|
|
|
N = int(N)
|
2017-04-11 22:10:52 +00:00
|
|
|
self.fib_array.append(0)
|
|
|
|
self.fib_array.append(1)
|
2016-09-26 10:26:23 +00:00
|
|
|
for i in range(2, N + 1):
|
2017-04-11 22:10:52 +00:00
|
|
|
self.fib_array.append(self.fib_array[i - 1] + self.fib_array[i - 2])
|
2017-04-12 13:45:56 +00:00
|
|
|
elif N == 0:
|
2017-04-11 22:10:52 +00:00
|
|
|
self.fib_array.append(0)
|
2016-09-26 10:26:23 +00:00
|
|
|
|
|
|
|
def get(self, sequence_no=None):
|
2017-04-12 13:45:56 +00:00
|
|
|
if sequence_no != None:
|
2016-09-26 10:26:23 +00:00
|
|
|
if sequence_no < len(self.fib_array):
|
2017-04-12 13:45:56 +00:00
|
|
|
return print(self.fib_array[:sequence_no + 1])
|
2016-09-26 10:26:23 +00:00
|
|
|
else:
|
|
|
|
print("Out of bound.")
|
|
|
|
else:
|
2017-04-11 22:10:52 +00:00
|
|
|
print("Please specify a value")
|
2016-09-26 10:26:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys
|
|
|
|
|
|
|
|
print("\n********* Fibonacci Series Using Dynamic Programming ************\n")
|
2017-10-07 13:47:50 +00:00
|
|
|
# For python 2.x and 3.x compatibility: 3.x has no raw_input builtin
|
2016-09-26 10:26:23 +00:00
|
|
|
# otherwise 2.x's input builtin function is too "smart"
|
|
|
|
if sys.version_info.major < 3:
|
|
|
|
input_function = raw_input
|
|
|
|
else:
|
|
|
|
input_function = input
|
|
|
|
|
|
|
|
print("\n Enter the upper limit for the fibonacci sequence: ", end="")
|
|
|
|
try:
|
|
|
|
N = eval(input())
|
|
|
|
fib = Fibonacci(N)
|
|
|
|
print(
|
|
|
|
"\n********* Enter different values to get the corresponding fibonacci sequence, enter any negative number to exit. ************\n")
|
|
|
|
while True:
|
|
|
|
print("Enter value: ", end=" ")
|
2016-09-26 10:38:40 +00:00
|
|
|
try:
|
|
|
|
i = eval(input())
|
|
|
|
if i < 0:
|
|
|
|
print("\n********* Good Bye!! ************\n")
|
|
|
|
break
|
|
|
|
fib.get(i)
|
|
|
|
except NameError:
|
|
|
|
print("\nInvalid input, please try again.")
|
2016-09-26 10:26:23 +00:00
|
|
|
except NameError:
|
|
|
|
print("\n********* Invalid input, good bye!! ************\n")
|