-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcoin change recursion.jl
69 lines (42 loc) · 1.49 KB
/
coin change recursion.jl
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
61
62
63
64
65
66
67
68
69
# 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.jl
# 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
function coin_change(num,choice)
#base case
if num==0
return 1
end
#prevent stack overflow
if num<0
return 0
end
output=0
#iterate through cases of exclusion
for i in 1:length(choice)
#case of inclusion
include=coin_change(num-choice[i],choice)
exclude=0
#case of exclusion
if i>=2
exclude=coin_change(num,choice[1:(i-1)])
end
#two sub problems merge into a big one
output=include+exclude
end
return output
end
# In[3]:
coin_change(10,[1,2,3])