Financial TerminologyCapital Market,资本市场,主要用于大于一年的投资。(Financing, 融资,资本市场存在的目的。Security, 证券。Securities Act (1933), 证券法案,Senior Security, 优先级证券,包括债券和优先股...
分类:
其他好文 时间:
2015-06-29 12:58:19
阅读次数:
133
原文:Lucene.Net 2.3.1开发介绍 —— 三、索引(七)5、IndexWriter 索引这部分最后讲的是IndexWriter。如果说前面提到的都是数据的结构,那么IndexWriter就是业务的封装。无论述Document,Field还是看不见的Segment,Term都是对数据存储逻...
分类:
Web程序 时间:
2015-06-26 19:30:04
阅读次数:
129
原文:Lucene提供的条件判断查询第一、按词条搜索 - TermQuery query = new TermQuery(new Term("name","word1"));hits = searcher.search(query); 这样就可以把 field 为 name 的所有包含 word1 ...
分类:
Web程序 时间:
2015-06-26 14:57:25
阅读次数:
105
题目传送门 1 /* 2 题意:第i个人选择第a[i]个人,问组成强联通分量(自己连自己也算)外还有多少零散的人 3 有向图强联通分量-Tarjan算法:在模板上加一个num数组,记录每个连通分量的点数,若超过1,则将连通点数相加 4 用总点数-ans则是零散的点 5...
分类:
其他好文 时间:
2015-06-23 17:22:52
阅读次数:
128
知识就是砖,哪里需要哪里搬
linux新手,这里记录下新手过程中的一些最简单基础的问题, update anytime.Ubuntu LTS 版本中LTS的意思LTS means Long Term Supports
参考链接: Ubuntu LTS 是什么?...
分类:
系统相关 时间:
2015-06-23 13:36:46
阅读次数:
160
原文:http://www.infoq.com/cn/news/2015/06/Java-Spark-Jodd-Ninja?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global任...
分类:
编程语言 时间:
2015-06-18 11:03:26
阅读次数:
183
The Borg is an immensely powerful race of enhanced humanoids from the delta quadrant of the galaxy. The Borg collective is the term used to describe t...
分类:
其他好文 时间:
2015-06-10 20:43:54
阅读次数:
95
ssh登陆阿里云ssh username@ip
uname -a 查看linux内核版本,因为Docker推荐使用3.8以上内核,如果版本低可能会不稳定,因此需要选用yum方式升级内核。
导入 KEY ,安装软件源。在 YUM 的 ELRepo 源中,有mainline(3.13.1)、long-term(3.10.28)这 2 个内核版本,考虑到 long-term 更稳定,会长期更新,所以选择...
分类:
其他好文 时间:
2015-06-07 09:36:42
阅读次数:
3613
The nth term of the sequence of triangle numbers is given by, tn = ½n(n+1); so the first ten triangle numbers are:
1, 3, 6, 10, 15, 21, 28, 36, 45, 55, ...
By converting each letter in a word to a...
分类:
其他好文 时间:
2015-06-05 12:29:01
阅读次数:
128
#include
#include
#include
#include
#include
using namespace std;
long long qmod(int a, int b, int p) {
long long res = 1;
long long term = a%p;
while(b) {
if(b&1){
...
分类:
编程语言 时间:
2015-06-03 19:38:58
阅读次数:
469