The principles of recursion are the same, regardless of the language used for implementation. This chapter views the topic through the lens of C++. There are a fair number of examples and visualizations. Read through these at a minimum. You might find the exercises useful since the application of a principle is an aid to your understanding. Read Chapter 5 in this book on C++.
12. Dynamic Programming
A classic example of an optimization problem involves making change using the fewest coins. Suppose you are a programmer for a vending machine manufacturer. Your company wants to streamline effort by giving out the fewest possible coins in change for each transaction. Suppose a customer puts in a dollar bill and purchases an item for 37 cents. What is the smallest number of coins you can use to make change? The answer is six coins: two quarters, one dime, and three pennies. How did we arrive at the answer of six coins? We start with the largest coin in our arsenal (a quarter) and use as many of those as possible, then we go to the next lowest coin value and use as many of those as possible. This first approach is called a greedy method because we try to solve as big a piece of the problem as possible right away.
The greedy method works fine when we are using U.S. coins, but suppose that your company decides to deploy its vending machines in Lower Elbonia where, in addition to the usual 1, 5, 10, and 25 cent coins they also have a 21 cent coin. In this instance our greedy method fails to find the optimal solution for 63 cents in change. With the addition of the 21 cent coin the greedy method would still find the solution to be six coins. However, the optimal answer is three 21 cent pieces.
Let's look at a method where we could be sure that we would find the optimal answer to the problem. Since this section is about recursion, you may have guessed that we will use a recursive solution. Let's start with identifying the base case. If we are trying to make change for the same amount as the value of one of our coins, the answer is easy, one coin.
If the amount does not match we have several options. What we want is the minimum of a penny plus the number of coins needed to make change for the original amount minus a penny, or a nickel plus the number of coins needed to make change for the original amount minus five cents, or a dime plus the number of coins needed to make change for the original amount minus ten cents, and so on. So the number of coins needed to make change for the original amount can be computed according to the following:
The algorithm for doing what we have just described is shown in Listing 7. In line 7 we are checking our base case; that is, we are trying to make change in the exact amount of one of our coins. If we do not have a coin equal to the amount of change, we make recursive calls for each different coin value less than the amount of change we are trying to make. Line 6 shows how we filter the list of coins to those less than the current value of change using a list comprehension. The recursive call also reduces the total amount of change we need to make by the value of the coin selected. The recursive call is made in line 14. Notice that on that same line we add 1 to our number of coins to account for the fact that we are using a coin. Just adding 1 is the same as if we had made a recursive call asking where we satisfy the base case condition immediately.
Listing 7
xxxxxxxxxx
//Recursive example of trying to get the least amount of coins to make up an amount of change.
using namespace std;
int recMC_greedy(vector<int> coinValueList, int change){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">9</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">if</span> (<span class="cm-variable">change</span> <span class="cm-operator">==</span> <span class="cm-number">0</span>){ <span class="cm-comment">//base case if, change is 0, then the number of coins have been finalized</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">10</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">return</span> <span class="cm-number">0</span>;</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">11</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> }
else{</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">13</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-type">int</span> <span class="cm-variable">cur_max</span> <span class="cm-operator">=*</span> <span class="cm-variable">max_element</span>(<span class="cm-variable">coinValueList</span>.<span class="cm-variable">begin</span>(), <span class="cm-variable">coinValueList</span>.<span class="cm-variable">end</span>());<span class="cm-comment">//use the maximum in the list to see how many of these can be used to form the sum</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">14</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-type">int</span> <span class="cm-variable">count</span><span class="cm-operator">=</span><span class="cm-type">int</span>(<span class="cm-variable">change</span><span class="cm-operator">/</span><span class="cm-variable">cur_max</span>); <span class="cm-comment">//find how many of the max is needed to make the change so that the number of coins used is minimum</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">15</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable">coinValueList</span>.<span class="cm-variable">erase</span>(<span class="cm-variable">std::remove</span>(<span class="cm-variable">coinValueList</span>.<span class="cm-variable">begin</span>(), <span class="cm-variable">coinValueList</span>.<span class="cm-variable">end</span>(), <span class="cm-variable">cur_max</span>), <span class="cm-variable">coinValueList</span>.<span class="cm-variable">end</span>()); <span class="cm-comment">//erasing the current max so that a different max can be</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">16</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-comment">//used in next recursion and continue the greedy process</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">17</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">return</span> <span class="cm-variable">count</span> <span class="cm-operator">+</span> <span class="cm-variable">recMC_greedy</span>(<span class="cm-variable">coinValueList</span>, <span class="cm-variable">change</span><span class="cm-operator">-</span><span class="cm-variable">cur_max</span> <span class="cm-operator">*</span> <span class="cm-variable">count</span>); <span class="cm-comment">//returns the counts of the coins using recursion</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">18</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> }
}
int main() {</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">22</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-type">int</span> <span class="cm-variable">arr2</span>[] <span class="cm-operator">=</span> {<span class="cm-number">1</span>, <span class="cm-number">5</span>, <span class="cm-number">10</span>, <span class="cm-number">21</span>, <span class="cm-number">25</span>};
vector<int> coinValueList(arr2, arr2 + (sizeof(arr2)/ sizeof(arr2[0]))); //Initializing vector
cout<<recMC_greedy(coinValueList, 63)<<endl; //using the greedy algorithm for the edge case 63 whose optimal solution is 3 coins of 21
Recursively Counting Coins with Table Lookup C++ (lst_change11cpp)
xxxxxxxxxx
#Recursive example of trying to get the least amount of coins to make up an amount of change.
def recMC_greedy(coinValueList,change):
if change == 0: #base case if, change is 0, then the number of coins have been finalized
return 0
else:
cur_max = max(coinValueList) #use the maximum in the list to see how many of these can be used to form the sum
count = change//cur_max #find how many of the max is needed to make the change so that the number of coins used is minimum
index = coinValueList.index(cur_max)
del coinValueList[index] #erasing the current max so that a different max can be
#used in next recursion and continue the greedy process
return count + recMC_greedy(coinValueList, change-cur_max * count) #returns the counts of the coins using recursion
def main():
print(recMC_greedy([1, 5, 10, 21, 25], 63)) #using the greedy algorithm for the edge case 63 whose optimal solution is 3 coins of 21
#but greedy algorithm gives 6 coins which is not the most optimum solution
main()
Recursively Counting Coins with Table Lookup Python (lst_change12cpp)
The trouble with the algorithm in Listing 7 is that it is extremely inefficient. In fact, it takes 67,716,925 recursive calls to find the optimal solution to the 4 coins, 63 cents problem! To understand the fatal flaw in our approach look at Figure 5, which illustrates a small fraction of the 377 function calls needed to find the optimal set of coins to make change for 26 cents.
Each node in the graph corresponds to a call to recMC
. The label on the node indicates the amount of change for which we are computing the number of coins. The label on the
arrow indicates the coin that we just used. By following the graph we can see the combination of coins that got us to any point in the graph. The main problem is that we are re-doing too many calculations. For example, the graph shows that the
algorithm would recalculate the optimal number of coins to make change for 15 cents at least three times. Each of these computations to find the optimal number of coins for 15 cents itself takes 52 function calls. Clearly we are wasting a lot
of time and effort recalculating old results.
Figure 3: Call Tree for Listing 7
The key to cutting down on the amount of work we do is to remember some of the past results so we can avoid recomputing results we already know. A simple solution is to store the results for the minimum number of coins in a table when we find them. Then before we compute a new minimum, we first check the table to see if a result is already known. If there is already a result in the table, we use the value from the table rather than recomputing. This technique is called memoization and is a very useful method for speeding up frequent yet hardware-demanding function calls. ActiveCode 1 shows a modified algorithm to incorporate our table lookup scheme.
xxxxxxxxxx
//A different attempt at making the change algorithm.
using namespace std;
int recDC(vector<int> coinValueList, int change, int knownResults[]){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">8</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-type">int</span> <span class="cm-variable">minCoins</span>, <span class="cm-variable">numCoins</span>;</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">9</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable">minCoins</span> <span class="cm-operator">=</span> <span class="cm-variable">change</span>;</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">10</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"><span cm-text=""></span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">11</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">for</span> (<span class="cm-type">unsigned</span> <span class="cm-type">int</span> <span class="cm-variable">i</span> <span class="cm-operator">=</span> <span class="cm-number">0</span>; <span class="cm-variable">i</span><span class="cm-operator"><</span> <span class="cm-variable">coinValueList</span>.<span class="cm-variable">size</span>(); <span class="cm-variable">i</span><span class="cm-operator">++</span>){ <span class="cm-comment">//this loop contains the base case,</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">12</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-comment">//as it returns items that are not</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">13</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-comment">//returning a call to the recDC function.</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">14</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">if</span> (<span class="cm-variable">coinValueList</span>[<span class="cm-variable">i</span>] <span class="cm-operator">==</span> <span class="cm-variable">change</span>){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">15</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable">knownResults</span>[<span class="cm-variable">change</span>] <span class="cm-operator">=</span> <span class="cm-number">1</span>;</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">16</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">return</span> <span class="cm-number">1</span>;</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">17</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> }
else if(knownResults[change] > 0){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">19</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">return</span> <span class="cm-variable">knownResults</span>[<span class="cm-variable">change</span>];</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">20</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> }
}
for (unsigned int y=0; y<coinValueList.size(); y++){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">23</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">if</span> (<span class="cm-variable">coinValueList</span>[<span class="cm-variable">y</span>] <span class="cm-operator"><=</span> <span class="cm-variable">change</span>){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">24</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable">numCoins</span> <span class="cm-operator">=</span> <span class="cm-number">1</span> <span class="cm-operator">+</span> <span class="cm-variable">recDC</span>(<span class="cm-variable">coinValueList</span>, <span class="cm-variable">change</span> <span class="cm-operator">-</span> <span class="cm-variable">coinValueList</span>[<span class="cm-variable">y</span>], <span class="cm-variable">knownResults</span>); <span class="cm-comment">//Recursive call</span></span></pre>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="position: absolute; height: 13px; width: 1px; border-bottom: 17px solid transparent; top: 828px;"></div>
<div class="CodeMirror-gutters" style="height: 858px;">
<div class="CodeMirror-gutter CodeMirror-linenumbers" style="width: 29px;"></div>
</div>
</div>
<div class="ui-resizable-handle ui-resizable-e" style="z-index: 90;"></div>
<div class="ui-resizable-handle ui-resizable-s" style="z-index: 90;"></div>
<div class="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" style="z-index: 90;"></div>
</div>
</div>
<div style="clear: both;"></div>
<div class="ac_output col-md-12">
<pre id="lst_change2cpp_stdout" style="visibility: hidden;"></pre>
<div id="lst_change2cpp_graphics" class="ac-canvas"></div>
</div>
<div id="lst_change2cpp_codelens" class="col-md-12" style="display: none;"></div>
<div class="col-md-12" style="display: none;"></div>
<div style="clear: both;"></div>
<p class="runestone_caption runestone_caption_text">Recursively Counting Coins with Table Lookup C++ (lst_change2cpp)</p>
</div>
</div>
</div>
</div>
<div id="coin2cpp-1" class="tab-pane" role="tabpanel">
<div data-component="tab" data-tabname="Python">
<div data-childcomponent="lst_change14cpp" class="runestone explainer ac_section alert alert-warning">
<div class="ac_section alert alert-warning" id="lst_change14cpp" lang="python">
<div class="ac_actions col-md-12"><button class="btn btn-success run-button" type="button">Run</button><button class="btn btn-default" type="button">Load History</button><button class="ac_opt btn btn-default" style="margin-left: 10px;">Show CodeLens</button></div>
<div id="lst-change14cpp"></div>
<div class="ac_code_div col-md-12">
<div class="CodeMirror cm-s-default ui-resizable">
<div style="overflow: hidden; position: relative; width: 3px; height: 0px; top: 4px; left: 34px;"><textarea style="position: absolute; bottom: -1em; padding: 0px; width: 1px; height: 1em; outline: currentcolor none medium;" autocorrect="off" autocapitalize="none" spellcheck="false" tabindex="0" wrap="off"></textarea></div>
<div class="CodeMirror-vscrollbar" tabindex="-1" cm-not-content="true" style="display: block; bottom: 17px;">
<div style="min-width: 1px; height: 428px;"></div>
</div>
<div class="CodeMirror-hscrollbar" tabindex="-1" cm-not-content="true" style="display: block; right: 17px; left: 30px;">
<div style="height: 100%; min-height: 1px; width: 755px;"></div>
</div>
<div class="CodeMirror-scrollbar-filler" cm-not-content="true" style="display: block; height: 17px; width: 17px;"></div>
<div class="CodeMirror-gutter-filler" cm-not-content="true"></div>
<div class="CodeMirror-scroll" tabindex="-1" draggable="true">
<div class="CodeMirror-sizer" style="margin-left: 30px; margin-bottom: -17px; border-right-width: 13px; min-height: 428px; min-width: 754.6px; padding-right: 17px; padding-bottom: 17px;">
<div style="position: relative; top: 0px;">
<div class="CodeMirror-lines" role="presentation">
<div style="position: relative; outline: currentcolor none medium;" role="presentation">
<div class="CodeMirror-measure">
<pre class="CodeMirror-line-like"><span>xxxxxxxxxx</span></pre>
</div>
<div class="CodeMirror-measure"></div>
<div style="position: relative; z-index: 1;"></div>
<div class="CodeMirror-cursors">
<div class="CodeMirror-cursor" style="left: 4px; top: 0px; height: 20px;"> </div>
</div>
<div class="CodeMirror-code" role="presentation" style="">
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">1</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"><span class="cm-comment">#A different attempt at making the change algorithm.</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">2</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"><span cm-text=""></span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">3</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"><span class="cm-keyword">def</span> <span class="cm-def">recDC</span>(<span class="cm-variable">coinValueList</span>, <span class="cm-variable">change</span>, <span class="cm-variable">knownResults</span>):</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">4</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable cm-error">minCoins</span> <span class="cm-operator">=</span> <span class="cm-variable">change</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">5</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">if</span> <span class="cm-variable">change</span> <span class="cm-keyword">in</span> <span class="cm-variable">coinValueList</span>: <span class="cm-comment">#base case</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">6</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable cm-error">knownResults</span>[<span class="cm-variable">change</span>] <span class="cm-operator">=</span> <span class="cm-number">1</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">7</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">return</span> <span class="cm-number">1</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">8</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword cm-error">elif</span> <span class="cm-variable">knownResults</span>[<span class="cm-variable">change</span>] <span class="cm-operator">></span> <span class="cm-number">0</span>: <span class="cm-comment">#base case</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">9</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">return</span> <span class="cm-variable">knownResults</span>[<span class="cm-variable">change</span>]</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">10</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword cm-error">else</span>:</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">11</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">for</span> <span class="cm-variable">i</span> <span class="cm-keyword">in</span> [<span class="cm-variable">c</span> <span class="cm-keyword">for</span> <span class="cm-variable">c</span> <span class="cm-keyword">in</span> <span class="cm-variable">coinValueList</span> <span class="cm-keyword">if</span> <span class="cm-variable">c</span> <span class="cm-operator"><=</span> <span class="cm-variable">change</span>]:</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">12</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable cm-error">numCoins</span> <span class="cm-operator">=</span> <span class="cm-number">1</span> <span class="cm-operator">+</span> <span class="cm-variable">recDC</span>(<span class="cm-variable">coinValueList</span>, <span class="cm-variable">change</span> <span class="cm-operator">-</span> <span class="cm-variable">i</span>, <span class="cm-variable">knownResults</span>) <span class="cm-comment">#Recursive call.</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">13</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">if</span> <span class="cm-variable">numCoins</span> <span class="cm-operator"><</span> <span class="cm-variable">minCoins</span>:</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">14</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable cm-error">minCoins</span> <span class="cm-operator">=</span> <span class="cm-variable">numCoins</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">15</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable">knownResults</span>[<span class="cm-variable">change</span>] <span class="cm-operator">=</span> <span class="cm-variable">minCoins</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">16</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword cm-error">return</span> <span class="cm-variable">minCoins</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">17</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"><span cm-text=""></span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">18</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"><span class="cm-keyword">def</span> <span class="cm-def">main</span>():</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">19</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-builtin">print</span>(<span class="cm-variable">recDC</span>([<span class="cm-number">1</span>, <span class="cm-number">5</span>, <span class="cm-number">10</span>, <span class="cm-number">21</span>, <span class="cm-number">25</span>], <span class="cm-number">63</span>, [<span class="cm-number">0</span>]<span class="cm-operator">*</span><span class="cm-number">64</span>))</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">20</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"><span class="cm-variable">main</span>()</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">21</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"><span cm-text=""></span></span></pre>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="position: absolute; height: 13px; width: 1px; border-bottom: 17px solid transparent; top: 428px;"></div>
<div class="CodeMirror-gutters" style="height: 458px;">
<div class="CodeMirror-gutter CodeMirror-linenumbers" style="width: 29px;"></div>
</div>
</div>
<div class="ui-resizable-handle ui-resizable-e" style="z-index: 90;"></div>
<div class="ui-resizable-handle ui-resizable-s" style="z-index: 90;"></div>
<div class="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" style="z-index: 90;"></div>
</div>
</div>
<div style="clear: both;"></div>
<div class="ac_output col-md-12">
<pre id="lst_change14cpp_stdout" style="visibility: hidden;"></pre>
<div id="lst_change14cpp_graphics" class="ac-canvas"></div>
</div>
<div id="lst_change14cpp_codelens" class="col-md-12" style="display: none;"></div>
<div class="col-md-12" style="display: none;"></div>
<div style="clear: both;"></div>
<p class="runestone_caption runestone_caption_text">Recursively Counting Coins with Table Lookup Python (lst_change14cpp)</p>
</div>
</div>
</div>
</div>
</div>
</div>
<p>Notice that in line 15 we have added a test to see if our table contains the minimum number of coins for a certain amount of change. If it does not, we compute the minimum recursively and store the computed minimum in the table. Using this modified
algorithm reduces the number of recursive calls we need to make for the four coin, 63 cent problem to 221 calls!</p>
<p>Although the algorithm in <span class="reference internal"><span class="std std-ref">AcitveCode 1</span></span> is correct, it looks and feels like a bit of a hack. Also, if we look at the <code class="docutils literal notranslate"><span class="pre">knownResults</span></code> lists we can see that there are some holes in the table. In fact the term for what we have done is not dynamic programming but rather we have improved the performance of our program by using a technique known as "memoization," or more commonly
called "caching". Memoization uses what is sometimes called an opportunistic top-down approach. When you need the result of a computation, you check to see if you have already computed it, otherwise you do the new calculation and store the result.</p>
<p>A truly dynamic programming algorithm will take a more systematic bottom-up approach to the problem. Memoization and dynamic programming are both code optimization techniques that avoid recalculating duplicate work. Our dynamic programming solution
is going to start with making change for one cent and systematically work its way up to the amount of change we require. This guarantees us that at each step of the algorithm we already know the minimum number of coins needed to make change for
any smaller amount.
</p>
<p>This is often called synamic programming with tabulation. Let's look at how we would fill in a table of minimum coins to use in making change for 11 cents. Figure 4 illustrates the process. We start with one cent. The only solution possible is one coin (a penny). The next row shows the minimum for one cent and two cents. Again, the only solution is two pennies. The fifth row is where things get interesting. Now we have two options to consider, five pennies or one nickel. How do we decide which is best? We consult the table and see that the number of coins needed to make change for four cents is four, plus one more penny to make five, equals five coins. Or we can look at zero cents plus one more nickel to make five cents equals 1 coin. Since the minimum of one and five is one we store 1 in the table. Fast forward again to the end of the table and consider 11 cents. Figure 5 shows the three options that we have to consider:</p>
<ol class="arabic simple">
<li>
<p>A penny plus the minimum number of coins to make change for
<span class="math notranslate nohighlight"><span class="MathJax_Preview" style="color: inherit;"></span><span class="MathJax" id="MathJax-Element-2-Frame" tabindex="0" style="position: relative;" data-mathml="<math xmlns="http://www.w3.org/1998/Math/MathML"><mn>11</mn><mo>−</mo><mn>1</mn><mo>=</mo><mn>10</mn></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-142" style="width: 6.074em; display: inline-block;"><span style="display: inline-block; position: relative; width: 5.06em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.358em, 1005.02em, 2.463em, -1000em); top: -2.202em; left: 0em;"><span class="mrow" id="MathJax-Span-143"><span class="mn" id="MathJax-Span-144" style="font-family: MathJax_Main;">11</span>
<span class="mo" id="MathJax-Span-145" style="font-family: MathJax_Main; padding-left: 0.222em;">−</span><span class="mn" id="MathJax-Span-146" style="font-family: MathJax_Main; padding-left: 0.222em;">1</span><span class="mo" id="MathJax-Span-147" style="font-family: MathJax_Main; padding-left: 0.278em;">=</span><span class="mn" id="MathJax-Span-148" style="font-family: MathJax_Main; padding-left: 0.278em;">10</span></span><span style="display: inline-block; width: 0px; height: 2.202em;"></span></span>
</span><span style="display: inline-block; overflow: hidden; vertical-align: -0.17em; border-left: 0px solid; width: 0px; height: 1.04em;"></span></span>
</nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"><mn>11</mn><mo>−</mo><mn>1</mn><mo>=</mo><mn>10</mn></math></span></span>
<script type="math/tex" id="MathJax-Element-2">11-1 = 10</script>
</span> cents (1)</p>
</li>
<li>
<p>A nickel plus the minimum number of coins to make change for
<span class="math notranslate nohighlight"><span class="MathJax_Preview" style="color: inherit;"></span><span class="MathJax" id="MathJax-Element-3-Frame" tabindex="0" style="position: relative;" data-mathml="<math xmlns="http://www.w3.org/1998/Math/MathML"><mn>11</mn><mo>−</mo><mn>5</mn><mo>=</mo><mn>6</mn></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-149" style="width: 5.539em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.583em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.358em, 1004.54em, 2.463em, -1000em); top: -2.202em; left: 0em;"><span class="mrow" id="MathJax-Span-150"><span class="mn" id="MathJax-Span-151" style="font-family: MathJax_Main;">11</span>
<span class="mo" id="MathJax-Span-152" style="font-family: MathJax_Main; padding-left: 0.222em;">−</span><span class="mn" id="MathJax-Span-153" style="font-family: MathJax_Main; padding-left: 0.222em;">5</span><span class="mo" id="MathJax-Span-154" style="font-family: MathJax_Main; padding-left: 0.278em;">=</span><span class="mn" id="MathJax-Span-155" style="font-family: MathJax_Main; padding-left: 0.278em;">6</span></span><span style="display: inline-block; width: 0px; height: 2.202em;"></span></span>
</span><span style="display: inline-block; overflow: hidden; vertical-align: -0.17em; border-left: 0px solid; width: 0px; height: 1.04em;"></span></span>
</nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"><mn>11</mn><mo>−</mo><mn>5</mn><mo>=</mo><mn>6</mn></math></span></span>
<script type="math/tex" id="MathJax-Element-3">11 - 5 = 6</script>
</span> cents (2)</p>
</li>
<li>
<p>A dime plus the minimum number of coins to make change for
<span class="math notranslate nohighlight"><span class="MathJax_Preview" style="color: inherit;"></span><span class="MathJax" id="MathJax-Element-4-Frame" tabindex="0" style="position: relative;" data-mathml="<math xmlns="http://www.w3.org/1998/Math/MathML"><mn>11</mn><mo>−</mo><mn>10</mn><mo>=</mo><mn>1</mn></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-156" style="width: 6.074em; display: inline-block;"><span style="display: inline-block; position: relative; width: 5.06em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.358em, 1004.99em, 2.463em, -1000em); top: -2.202em; left: 0em;"><span class="mrow" id="MathJax-Span-157"><span class="mn" id="MathJax-Span-158" style="font-family: MathJax_Main;">11</span>
<span class="mo" id="MathJax-Span-159" style="font-family: MathJax_Main; padding-left: 0.222em;">−</span><span class="mn" id="MathJax-Span-160" style="font-family: MathJax_Main; padding-left: 0.222em;">10</span><span class="mo" id="MathJax-Span-161" style="font-family: MathJax_Main; padding-left: 0.278em;">=</span><span class="mn" id="MathJax-Span-162" style="font-family: MathJax_Main; padding-left: 0.278em;">1</span></span><span style="display: inline-block; width: 0px; height: 2.202em;"></span></span>
</span><span style="display: inline-block; overflow: hidden; vertical-align: -0.17em; border-left: 0px solid; width: 0px; height: 1.04em;"></span></span>
</nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"><mn>11</mn><mo>−</mo><mn>10</mn><mo>=</mo><mn>1</mn></math></span></span>
<script type="math/tex" id="MathJax-Element-4">11 - 10 = 1</script>
</span> cent (1)</p>
</li>
</ol>
<p>Either option 1 or 3 will give us a total of two coins which is the minimum number of coins for 11 cents.</p>
<p style="text-align: center;"><img src="https://learn.saylor.org/pluginfile.php/3131138/mod_book/chapter/12856/changeTable.png" alt="image" class="img-responsive atto_image_button_text-bottom" width="485" height="425"><br></p>
<p class="caption" style="text-align: center;"><span class="caption-text">Figure 4: Minimum Number of Coins Needed to Make Change</span></p>
<p class="caption" style="text-align: center;"><span class="caption-text"><img src="https://learn.saylor.org/pluginfile.php/3131138/mod_book/chapter/12856/elevenCents.png" alt="image" class="img-responsive atto_image_button_text-bottom" width="456" height="156"><br></span></p>
<p class="caption" style="text-align: center;"><span class="caption-text">Figure 5: Three Options to Consider for the Minimum Number of Coins for Eleven Cents</span><span class="headerlink"></span></p>
<p><span class="reference internal"><span class="std std-ref">Listing 8</span></span> is a dynamic programming algorithm to solve our change-making problem. <code class="docutils literal notranslate"><span class="pre">dpMakeChange</span></code> takes three parameters: a list of valid coin values, the amount of change we want to make, and a list of the minimum number of coins needed to make each value. When the function is done <code class="docutils literal notranslate"><span class="pre">minCoins</span></code> will contain the solution for all values from 0 to the value of <code class="docutils literal notranslate"><span class="pre">change</span></code>.</p>
<p id="lst-dpchangecpp"><strong>Listing 8</strong></p>
<div id="coin3cpp" class="alert alert-warning" role="tabpanel">
<ul id="coin3cpp_tab" class="nav nav-tabs" role="tablist">
<li role="presentation" aria-controls="coin3cpp-0" class="active"><a data-toggle="tab" href="#coin3cpp-0" role="tab"><span>C++</span></a></li>
<li role="presentation" aria-controls="coin3cpp-1"><a data-toggle="tab" href="#coin3cpp-1" role="tab"><span>Python</span></a></li>
</ul>
<div class="tab-content">
<div id="coin3cpp-0" class="tab-pane active" role="tabpanel">
<div data-component="tab" data-tabname="C++">
<div data-childcomponent="lst_change13cpp" class="runestone explainer ac_section alert alert-warning">
<div class="ac_section alert alert-warning" id="lst_change13cpp" lang="cpp">
<div class="ac_actions col-md-12"><button class="btn btn-success run-button" type="button">Run</button><button class="btn btn-default" type="button">Load History</button><button class="ac_opt btn btn-default" style="margin-left: 10px;">Show CodeLens</button></div>
<div id="lst-change13cpp"></div>
<div class="ac_code_div col-md-12">
<div class="CodeMirror cm-s-default ui-resizable">
<div style="overflow: hidden; position: relative; width: 3px; height: 0px; top: 4px; left: 34px;"><textarea style="position: absolute; bottom: -1em; padding: 0px; width: 1px; height: 1em; outline: currentcolor none medium;" autocorrect="off" autocapitalize="none" spellcheck="false" tabindex="0" wrap="off"></textarea></div>
<div class="CodeMirror-vscrollbar" tabindex="-1" cm-not-content="true" style="display: block; bottom: 17px;">
<div style="min-width: 1px; height: 588px;"></div>
</div>
<div class="CodeMirror-hscrollbar" tabindex="-1" cm-not-content="true" style="display: block; right: 17px; left: 30px;">
<div style="height: 100%; min-height: 1px; width: 1032px;"></div>
</div>
<div class="CodeMirror-scrollbar-filler" cm-not-content="true" style="display: block; height: 17px; width: 17px;"></div>
<div class="CodeMirror-gutter-filler" cm-not-content="true"></div>
<div class="CodeMirror-scroll" tabindex="-1" draggable="true">
<div class="CodeMirror-sizer" style="margin-left: 30px; margin-bottom: -17px; border-right-width: 13px; min-height: 588px; min-width: 1031.8px; padding-right: 17px; padding-bottom: 17px;">
<div style="position: relative; top: 0px;">
<div class="CodeMirror-lines" role="presentation">
<div style="position: relative; outline: currentcolor none medium;" role="presentation">
<div class="CodeMirror-measure">
<pre class="CodeMirror-line-like"><span>xxxxxxxxxx</span></pre>
</div>
<div class="CodeMirror-measure"></div>
<div style="position: relative; z-index: 1;"></div>
<div class="CodeMirror-cursors">
<div class="CodeMirror-cursor" style="left: 4px; top: 0px; height: 20px;"> </div>
</div>
<div class="CodeMirror-code" role="presentation" style="">
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">1</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-comment">//Program that stores the solution for all possible amounts of change up to a given integer.</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">2</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"><span cm-text=""></span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">3</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-meta">#include <iostream></span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">4</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-meta">#include <vector></span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">5</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">using</span> <span class="cm-keyword">namespace</span> <span class="cm-def">std</span>;</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">6</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"><span cm-text=""></span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">7</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-type">int</span> <span class="cm-def">dpMakeChange</span>(<span class="cm-variable">vector</span><span class="cm-operator"><</span><span class="cm-type">int</span><span class="cm-operator">></span> <span class="cm-variable">coinValueList</span>, <span class="cm-type">int</span> <span class="cm-variable">change</span>, <span class="cm-variable">vector</span><span class="cm-operator"><</span><span class="cm-type">int</span><span class="cm-operator">></span> <span class="cm-variable">minCoins</span>){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">8</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">for</span> (<span class="cm-type">int</span> <span class="cm-variable">cents</span> <span class="cm-operator">=</span> <span class="cm-number">0</span> ; <span class="cm-variable">cents</span> <span class="cm-operator"><</span> <span class="cm-variable">change</span> <span class="cm-operator">+</span> <span class="cm-number">1</span>; <span class="cm-variable">cents</span><span class="cm-operator">++</span>){ <span class="cm-comment">//loop finds solution for all sets of change from 0 to int change.</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">9</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-type">int</span> <span class="cm-variable">coinCount</span> <span class="cm-operator">=</span> <span class="cm-variable">cents</span>;</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">10</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">for</span> (<span class="cm-type">int</span> <span class="cm-variable">j</span> : <span class="cm-variable">coinValueList</span>){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">11</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">if</span> (<span class="cm-variable">j</span> <span class="cm-operator"><=</span> <span class="cm-variable">cents</span>){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">12</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">if</span> (<span class="cm-variable">minCoins</span>[<span class="cm-variable">cents</span><span class="cm-operator">-</span><span class="cm-variable">j</span>] <span class="cm-operator">+</span> <span class="cm-number">1</span> <span class="cm-operator"><</span> <span class="cm-variable">coinCount</span>){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">13</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable">coinCount</span> <span class="cm-operator">=</span> <span class="cm-variable">minCoins</span>[<span class="cm-variable">cents</span><span class="cm-operator">-</span><span class="cm-variable">j</span>] <span class="cm-operator">+</span> <span class="cm-number">1</span>; <span class="cm-comment">//assigns the number of coins that is used to make the change.</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">14</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> }
}
}
minCoins[cents] = coinCount;
}
return minCoins[change];
}
int main(){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">23</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable">vector</span><span class="cm-operator"><</span><span class="cm-type">int</span><span class="cm-operator">></span> <span class="cm-variable">coinValueList</span> <span class="cm-operator">=</span> {<span class="cm-number">1</span>, <span class="cm-number">5</span>, <span class="cm-number">10</span>, <span class="cm-number">21</span>, <span class="cm-number">25</span>};
int change = 63;
Recursively Counting Coins with Table Lookup C++ (lst_change13cpp)
xxxxxxxxxx
#Program that stores the solution for all possible amounts of change up to a given integer.
def dpMakeChange(coinValueList,change,minCoins):
for cents in range(change+1): #loops finds solution for all sets of change from 0 to change parameter.
coinCount = cents
for j in [c for c in coinValueList if c <= cents]:
if minCoins[cents-j] + 1 < coinCount:
coinCount = minCoins[cents-j] + 1 #assigns the number of coins that will be used to make the sum.
minCoins[cents] = coinCount
return minCoins[change]
def main():
print(dpMakeChange([1, 5, 10, 21, 25], 63, [0]*64))
main()
Recursively Counting Coins with Table Lookup Python (lst_change100cpp)
Note that dpMakeChange
is not a recursive function, even though we started with a recursive solution to this problem. It is important to realize that just because you can write
a recursive solution to a problem does not mean it is the best or most efficient solution. The bulk of the work in this function is done by the loop that starts on line 4. In this loop we consider using all possible coins to make change for
the amount specified by cents
. Like we did for the 11 cent example above, we remember the minimum value and store it in our
minCoins
list.
Although our making change algorithm does a good job of figuring out the minimum number of coins, it does not help us make change since we do not keep track of the coins we use. We can easily extend dpMakeChange
to keep track of the coins used by simply remembering the last coin we add for each entry in the minCoins
table. If we know the last coin added, we can simply subtract
the value of the coin to find a previous entry in the table that tells us the last coin we added to make that amount. We can keep tracing back through the table until we get to the beginning.
ActiveCode 2 shows the dpMakeChange
algorithm modified to keep track of the coins
used, along with a function
printCoins
that walks backward through the table to print out the value of each coin used. This shows the algorithm in action solving the problem for our friends in Lower
Elbonia. The first two lines of main
set the amount to be converted and create the list of coins used. The next two lines create the lists we need to store the results.
coinsUsed
is a list of the coins used to make change, and coinCount
is the minimum number of
coins used to make change for the amount corresponding to the position in the list.
Notice that the coins we print out come directly from the coinsUsed
array. For the first call we start at array position 63 and print 21. Then we take
and look at the 42nd element of the list. Once again we find a 21 stored there. Finally, element 21 of the array also contains 21, giving us the three 21 cent pieces.
xxxxxxxxxx
coinCount = minCoins[cents-j] + 1; //assigns the number of coins that have been used to make the sum.
//Addition to the precious program that finds the types of coins used and the process of doing it.
using namespace std;
int dpMakeChange(vector<int> coinValueList, int change, vector<int> minCoins, vector<int> coinsUsed){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">8</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-comment">//This function keeps track of the number of coins needed to create the change.</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">9</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">for</span> (<span class="cm-type">int</span> <span class="cm-variable">cents</span> <span class="cm-operator">=</span> <span class="cm-number">0</span> ; <span class="cm-variable">cents</span> <span class="cm-operator"><</span> <span class="cm-variable">change</span><span class="cm-operator">+</span><span class="cm-number">1</span>; <span class="cm-variable">cents</span><span class="cm-operator">++</span>){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">10</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-type">int</span> <span class="cm-variable">coinCount</span> <span class="cm-operator">=</span> <span class="cm-variable">cents</span>;</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">11</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-type">int</span> <span class="cm-variable">newCoin</span> <span class="cm-operator">=</span> <span class="cm-number">1</span>;</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">12</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"><span cm-text=""></span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">13</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">for</span> (<span class="cm-type">int</span> <span class="cm-variable">j</span> : <span class="cm-variable">coinValueList</span>){ <span class="cm-comment">//loop finds solution for all sets of change from 0 to int change.</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">14</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">if</span> (<span class="cm-variable">j</span> <span class="cm-operator"><=</span> <span class="cm-variable">cents</span>){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">15</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-keyword">if</span> (<span class="cm-variable">minCoins</span>[<span class="cm-variable">cents</span><span class="cm-operator">-</span><span class="cm-variable">j</span>] <span class="cm-operator">+</span> <span class="cm-number">1</span> <span class="cm-operator"><</span> <span class="cm-variable">coinCount</span>){</span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">16</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable">coinCount</span> <span class="cm-operator">=</span> <span class="cm-variable">minCoins</span>[<span class="cm-variable">cents</span><span class="cm-operator">-</span><span class="cm-variable">j</span>] <span class="cm-operator">+</span> <span class="cm-number">1</span>; <span class="cm-comment">//assigns the number of coins used to make the sum.</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">17</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> <span class="cm-variable">newCoin</span> <span class="cm-operator">=</span> <span class="cm-variable">j</span>; <span class="cm-comment">//assigns the type of coins that is used to find the sum.</span></span></pre>
</div>
<div style="position: relative;">
<div class="CodeMirror-gutter-wrapper" style="left: -30px;">
<div class="CodeMirror-linenumber CodeMirror-gutter-elt" style="left: 0px; width: 21px;">18</div>
</div>
<pre class=" CodeMirror-line " role="presentation"><span role="presentation"> }
}
}
minCoins[cents] = coinCount;
coinsUsed[cents] = newCoin;
}
Complete Solution to the Change Problem C++ (lst_dpremembercpp)
xxxxxxxxxx
#Addition to the precious program that finds the types of coins used and the process of doing it.
def dpMakeChange(coinValueList,change,minCoins,coinsUsed):
for cents in range(change+1):
coinCount = cents
newCoin = 1
for j in [c for c in coinValueList if c <= cents]:
if minCoins[cents-j] + 1 < coinCount:
coinCount = minCoins[cents-j] + 1 #assigns the amount of coins used.
newCoin = j #assigns the type of coin used.
minCoins[cents] = coinCount
coinsUsed[cents] = newCoin
return minCoins[change]
def printCoins(coinsUsed,change):
coin = change
while coin > 0:
thisCoin = coinsUsed[coin]
print(thisCoin)
coin = coin - thisCoin
def main():
amnt = 63
clist = [1, 5, 10, 21, 25]
Complete Solution to the Change Problem Python (lst_dprememberpy)