上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 41 下一页
摘要: 贪心 #include #include using namespace std;struct jewelry { int price; int volume; bool operator A.price; } }buf[101];int main() { int v, n, i, ans... 阅读全文
posted @ 2015-11-02 13:09 StevenLuke 阅读(87) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;struct rice { double money; double weight; bool operator =w[ids].money * w[ids].weight) { n -= w[ids... 阅读全文
posted @ 2015-11-01 17:06 StevenLuke 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 一、准备工作与代码实例 1、PIL、pytesser、tesseract (1)安装PIL:下载地址:http://www.pythonware.com/products/pil/(CSDN下载) 下载后是一个exe,直接双击安装,它会自动安装到C:\Python27\Lib\site-p... 阅读全文
posted @ 2015-10-31 21:24 StevenLuke 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 原来用m%k取余做的,WA,后来百度: M/K 要 是 比 K 大 呢 ?M是10,K是2.M/k=5,还可以折换成2个k。 #include int main() { int m, i, k; while(~scanf("%d%d", &m, &k) && m && k) { for(... 阅读全文
posted @ 2015-10-31 14:38 StevenLuke 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 对我而言,做算法题就是浪费时间和生命。 阅读全文
posted @ 2015-10-30 10:52 StevenLuke 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 今日实验室开会,会上研二的师哥垃圾的一塌糊涂。 阅读全文
posted @ 2015-10-28 18:40 StevenLuke 阅读(60) 评论(0) 推荐(0) 编辑
摘要: #include #include int month[12]={31,28,31,30,31,30,31,31,30,31,30,31};typedef struct{int year,month,day;}Day;Day day1,day2;//判断是不是闰年int leap(int yea... 阅读全文
posted @ 2015-10-27 21:51 StevenLuke 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 这里是论文链接:原文链接 这篇论文是对Lucene对中文的分词器不是很好而做的改进,做了一个基于词典的分词器。我看完后感觉他大体上就是这个内容了,当然做这个改进要做一些工作,可是它给我的感觉是好像不用有很高大上的idea才能发期刊,这篇论文给了我信心吧。至于读后的收获没什么,因为我一周之前就了解... 阅读全文
posted @ 2015-10-27 21:22 StevenLuke 阅读(99) 评论(0) 推荐(0) 编辑
摘要: #include int main() { int c, n, i, max, ans; int a[16], book[102]; scanf("%d", &c); while(c--) { ans = 0; max = 0; for(i=1; i 阅读全文
posted @ 2015-10-26 20:12 StevenLuke 阅读(90) 评论(0) 推荐(0) 编辑
摘要: #include int main() { char d1[6]; char c; int book[6]; int ids, i; while(~scanf("%c", &c) && c!='#') { ids = 0; for(i=0; i<6; i++) book[i] = 0; ... 阅读全文
posted @ 2015-10-26 14:15 StevenLuke 阅读(133) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 41 下一页