诶大家一张图···先猜猜其实原理真的看了很久没怎么懂.....明天早起继续弄完这个要开始进入c和stm32 明天最后一天oh,there is picture for you .You may know what this is. But the theory is still a mystery....
分类:
其他好文 时间:
2015-02-06 00:41:17
阅读次数:
188
这是我自己写的一份简短的李代数讲义,内容基本相当于 Humphreys 的教材 "Introduction to Lie algebras and Representation theory" 第 6 章,目的是介绍复半单李代数的表示理论。我会省略一些纯技术的细节(它们通常都比较简单),同时着重写我...
分类:
其他好文 时间:
2015-02-03 18:59:53
阅读次数:
126
12096 The SetStack Computer
Background from Wikipedia: Set theory is a branch ofmathematics created principally by the German mathe-matician Georg
Cantor at the end of the 19th century.
Initially ...
分类:
其他好文 时间:
2015-02-02 23:20:26
阅读次数:
519
Total Accepted: 32226
Total Submissions: 117691
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in
C where the candidate numbers sums to T.
...
分类:
其他好文 时间:
2015-01-31 16:21:19
阅读次数:
137
Description As we know,the fzu AekdyCoin is famous of math,especially in the field of number theory.So,many people call him "the descendant of Chen...
分类:
其他好文 时间:
2015-01-31 14:22:35
阅读次数:
290
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where
the candidate numbers sums to T.
The same repeated number may be chosen from C unlimited numb...
分类:
其他好文 时间:
2015-01-30 09:15:07
阅读次数:
174
【题目】
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where
the candidate numbers sums to T.
The same repeated number may be chosen from C unli...
分类:
其他好文 时间:
2015-01-27 18:23:32
阅读次数:
194
【题目】
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where
the candidate numbers sums to T.
Each number in C may only be used once in t...
分类:
其他好文 时间:
2015-01-27 18:21:00
阅读次数:
180
原题地址DFS代码: 1 vector > res; 2 3 void dfs(vector &num, vector &ans, int pos, int left) { 4 if (left == 0) 5 res.push_back(ans); 6 for (int ...
分类:
其他好文 时间:
2015-01-27 12:50:36
阅读次数:
130
// hdu 1023// number theory - catalan number// Jan.26 2015#include #include #include #define MAXN 60struct rev{ int num[MAXN]; int l; // when...
分类:
其他好文 时间:
2015-01-27 00:06:47
阅读次数:
244