最长上升子序列
摘要:
关于最长上升子序列的链接:http://wenku.baidu.com/view/fe0deecea1c7aa00b52acb71.htmlhttp://blog.sina.com.cn/s/blog_4b1e4fe9010098af.htmlhttp://www.cnblogs.com/celia01/archive/2012/07/27/2611043.html裸的最长上升子序列:时间复杂度为O(n*n)POJ 2533贴代码: 1 #include 2 #define N 1005 3 int a[N]; 4 int lis(int n) 5 { 6 int *dp= new i... 阅读全文
posted @ 2013-08-18 21:53 allh123 阅读(226) 评论(0) 推荐(0) 编辑