摘要: 座右铭 阅读全文
posted @ 2014-05-19 09:18 scott_ding 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 技术交流是一种享受……一种求之不得的享受! 阅读全文
posted @ 2014-03-26 17:39 scott_ding 阅读(188) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#include#includeusing namespace std;#define MAXN 9999#define MAXSIZE 10#define DLEN 4class BigNum{private: int a[500]; /... 阅读全文
posted @ 2015-03-15 17:47 scott_ding 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 给定n个模式串在主串中出现了几个#include #include const int MAXPT=500007; //最大节点数const int size=26; //子节点数const char start='a'; //子节点标号对应关系 class Ac_Automat{pr... 阅读全文
posted @ 2015-03-14 22:56 scott_ding 阅读(418) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#includeusing namespace std ;const int maxn=100020;const int inf=0x3f3f3f3f;int dp[maxn];int a[maxn];int n;int LIS(int a[],in... 阅读全文
posted @ 2015-03-14 16:08 scott_ding 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 判断一个数是不是素数:bool prime(int n){ if(n==0||n==1) return false; if(n==2) return true; for(int i=2;i#include #include const int maxn = 1000001;int ... 阅读全文
posted @ 2015-03-12 22:51 scott_ding 阅读(166) 评论(0) 推荐(0) 编辑
摘要: __builtin_ffs(x) 返回右起第一个‘1’的位置。__builtin_clz(x) 返回左起第一个‘1’之前0的个数。__builtin_ctz(x) 返回右起第一个‘1’之后的0的个数。__builtin_popcount(x... 阅读全文
posted @ 2015-03-12 21:17 scott_ding 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 机器学习 阅读全文
posted @ 2014-09-22 14:05 scott_ding 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 机器学习 阅读全文
posted @ 2014-09-22 14:04 scott_ding 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 机器学习 阅读全文
posted @ 2014-09-22 12:12 scott_ding 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 机器学习 阅读全文
posted @ 2014-09-22 10:32 scott_ding 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 我用Trados的时间不长,可以说是一个新手。但我在较短的时间内就已经初步掌握这个工具,说明它并不是那么神秘,并不是那么深不可测。这里,我说一说学习它的一点体会。在我转发的文章中有的内容,我就少讲一些。别人没有提到,或者没有强调的部分,我就多说一说。1.Trados不是一种机器翻译软件,而是一种翻译... 阅读全文
posted @ 2014-09-15 19:55 scott_ding 阅读(1909) 评论(0) 推荐(0) 编辑