摘要: 记录一下,O(nlgn)的算法求LIS 1 //HHH 2 #include <iostream> 3 #include <stdio.h> 4 #include <string.h> 5 using namespace std; 6 #define MX 1005 7 8 int num[MX]; 阅读全文
posted @ 2017-07-17 16:00 happy_codes 阅读(133) 评论(0) 推荐(0) 编辑