-
Notifications
You must be signed in to change notification settings - Fork 14
/
coin change recursion.py
61 lines (37 loc) · 1.42 KB
/
coin change 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
56
57
58
59
60
# coding: utf-8
# In[1]:
#coin change is a straight forward dynamic programming problem
#you are given one note and a set of coins of different values
#assuming you have infinite supply of coins of different values
#we need to compute different ways of making change
#the order of the coins doesnt matter in this case
#more details can be found in the following link
# https://www.geeksforgeeks.org/coin-change-dp-7/
#the script can also be done in dynamic programming
# https://github.com/je-suis-tm/recursion-and-dynamic-programming/blob/master/coin%20change%20dynamic%20programming.py
# In[2]:
#to solve this problem via recursion
#we divide one big problem into two sub problems
#the case where coin of η value is excluded in the solutions
#and the case where at least one coin of η value is included
def coin_change(num,choice):
#base case
if num==0:
return 1
#prevent stack overflow
if num<0:
return 0
output=0
#iterate through cases of exclusion
for i in range(len(choice)):
#case of inclusion
include=coin_change(num-choice[i],choice)
exclude=0
#case of exclusion
if i>=1:
exclude=coin_change(num,choice[:i])
#two sub problems merge into a big one
output=include+exclude
return output
# In[3]:
coin_change(4,[1,2,3])