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

dp求最长递增子序列并输出

时间:2016-04-26 12:38:36      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

 1 import java.util.ArrayList;
 2 import java.util.Arrays;
 3 import java.util.List;
 4 
 5 /**
 6  * Created  on 2016/4/26.
 7  */
 8 public class Testdp {
 9 
10     public static void main(String[] args) {
11         new Testdp().getLIS();
12     }
13 
14     public void getLIS() {
15         List<Integer> nums = null;
16         Integer[] numArray = {1, 4, 8, 1, 2, 3, 5};
17         nums = Arrays.asList(numArray); //输入的数据
18         int len = nums.size();
19 
20         String[] result = new String[len]; // 用来存储输出字符串
21         int dp[] = new int[len];
22 
23         for (int i = 0; i < len; ++i) {
24             dp[i] = 1;
25             result[i] = "" + nums.get(i);
26 
27             for(int j=0; j<i; ++j) {
28                 if (nums.get(j) < nums.get(i) && dp[j] + 1 > dp[i]) {
29                     result[i] = result[j] + " " +  nums.get(i);
30                     dp[i] = dp[j] + 1;
31                 }
32             }
33         }
34 
35         int maxLen = 0;
36         int maxIndex = 0;
37         for(int i=0; i<len; ++i) {
38             if (maxLen < dp[i]) {
39                 maxLen = dp[i];
40                 maxIndex = i;
41             }
42         }
43         System.out.println(result[maxIndex]);
44         System.out.println(maxLen);
45 
46     }
47 
48 }

 

dp求最长递增子序列并输出

标签:

原文地址:http://www.cnblogs.com/set-cookie/p/5434427.html

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