码迷,mamicode.com
首页 > 其他好文 > 详细

518. Coin Change 2

时间:2018-10-29 14:05:35      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:ret   for   []   change   public   nbsp   array   int   .so   

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

标签:ret   for   []   change   public   nbsp   array   int   .so   

原文地址:https://www.cnblogs.com/goPanama/p/9870117.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!