摘要: 数据挖掘入坑0x01什么是数据挖掘1.定义:从数据中获取知识。 2.实例: 1.比如你要想知道某辆车从启动到速度稳定行驶的距离,那么你会先统计从启动到稳定耗费的时间、稳定后的速度、加速度等参数;然后运用牛顿第二定律(或者其他物理学公式)建立模型;最后根据该车多次实... 阅读全文
posted @ 2018-03-29 21:06 gwj1139177410 阅读(151) 评论(0) 推荐(0) 编辑
摘要: //f[i]:长为i的LIS末位的最小值#include#include#includeusing namespace std;int f[1000010];int main(){ memset(f,0x3f,sizeof(f)); int n; cin... 阅读全文
posted @ 2018-03-29 20:18 gwj1139177410 阅读(122) 评论(0) 推荐(0) 编辑
选择