//判断一个汉子等于两个字符function getByteLen(val) { var len =
0; for (var i = 0; i < val.length; i++) { var a = val.charAt(i); if
(a.match(/[...
分类:
Web程序 时间:
2014-05-26 20:47:25
阅读次数:
205
MainRecv.cpp#include #include #include #pragma
comment(lib,"ws2_32.lib")#define RECV_IP "127.0.0.1"#define RECV_PORT
8899#define LEN_RECV_BUF 2048int ...
分类:
其他好文 时间:
2014-05-26 12:07:41
阅读次数:
276
今天闲来没事干,写个堆排序,用模版类实现的,数据可是任何可比较的类型。代码如下:MySqList.h 1 #ifndef __MYSQLIST 2
#define __MYSQLIST 3 template 4 class MySqList 5 { 6 private: 7 int len...
分类:
其他好文 时间:
2014-05-26 08:18:02
阅读次数:
274
总结一下我遇到的问题:
1.设置最小分词长度分词
被搜索名字为:andy
这时搜索andy正常,但是搜索a就搜不到。
解决办法,在索引配置文件中的index中添加
min_infix_len = 1
2.调用API返回记录总是只有20条
因为coreseek它默认返回的result里面,function SetLimits ( $offset, $limit, $max_...
分类:
其他好文 时间:
2014-05-26 05:32:58
阅读次数:
266
import
reex=raw_input()num="1234567890"a=re.findall("\d+",ex)b=re.findall("[+-]",ex)l=[]if
len(a)==len(b): for i in range(len(a)): l.append(...
分类:
其他好文 时间:
2014-05-26 01:47:32
阅读次数:
296
字节流InputStream和OutputStream的子类:FileInputStream
和FileOutputStream方法:int read(byte[] b,int off,int len);void write(byte[] b,int
off,int len);字符流Reader和W...
分类:
编程语言 时间:
2014-05-26 01:00:09
阅读次数:
378
1 #include 2 #include 3 int D,SIGN,Len_X,Len_Y;
4 char Map[100][100]; 5 int Sign[100][100]; 6 7 int Sign_Part(int x,int y) 8 { 9
10 int ii,jj;...
分类:
其他好文 时间:
2014-05-25 19:36:58
阅读次数:
265
Remove Duplicates from Sorted ArrayGiven a
sorted array, remove the duplicates in place such that each element appear only
once and return the new len...
分类:
其他好文 时间:
2014-05-25 19:08:31
阅读次数:
203
链接这个题把病毒分为了两种,一种包含可以覆盖,另一种不可以,需要分别求出包含他们的个数,可以把两种都建在一颗tire树上,在最后求得时候判断一下当前节点是属于哪种字符串,如果是不包含的需要判断一下pre[i]+len[i]
2 #include 3 #include 4 #include 5...
分类:
其他好文 时间:
2014-05-25 11:45:36
阅读次数:
263
int -> VALUE INT2NUM
VALUE -> int FIX2INT
char* -> VALUE rb_str_new(char*, len);
VALUE -> char* StringValueCString(value);
转换前..先 用 TYPE(v) 做类型转换
T_FIXNUM int
T_...
分类:
其他好文 时间:
2014-05-24 19:31:34
阅读次数:
214