摘要: 1 package Three; 2 3 public class KNAPSACK { 4 public static int [][] KNAPSACK_DP(int[] v,int [] w,int W) 5 { 6 int n=w.length-1; 7 int[][] c=new int[n+1][W+1]; 8 ... 阅读全文
posted @ 2016-05-09 14:02 小菁菁爱吃番茄酱 阅读(218) 评论(0) 推荐(0) 编辑