518. Coin Change 2

Posted gopanama

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了518. Coin Change 2相关的知识,希望对你有一定的参考价值。

coin循环要在外面 从小到大 不会有重复

 

 1 class Solution {
 2     public int change(int amount, int[] coins) {
 3         // if(coins.length == 0) return 1;
 4         int[] dp = new int[amount + 1];
 5         dp[0] = 1;
 6         Arrays.sort(coins);
 7         for(int j = 0; j < coins.length; j++){
 8             for(int i = 1; i <= amount; i++){
 9                 if(coins[j] <= i){
10                     dp[i] += dp[i - coins[j]];
11                 }
12             }
13         }
14         return dp[amount];
15         
16     }
17 }

 

以上是关于518. Coin Change 2的主要内容,如果未能解决你的问题,请参考以下文章

518. Coin Change 2

518. Coin Change 2

算法: 零钱兑换的方法数518. Coin Change 2

LeetCode 518. Coin Change 2

动态规划-零钱兑换-leetcode518

leetcode经典动态规划题目:518零钱兑换