webin.h
来自「使用中科院ICTLAS和BM25算法的检索」· C头文件 代码 · 共 36 行
H
36 行
#ifndef WEBIN_H_INCLUDED
#define WEBIN_H_INCLUDED
#define FIRSTCTOP 176
#define RANGE 94
#define LASTCTOP 160
#define NUM_OF_CHINESE 6600
#define ORIGINE_LEN_OF_CHINESE 10
struct Reply {
char comment[1000];
char postTime[40];
char IP[17];
int ID,parentID;
Reply *next, *pre;
};
struct News {
char content [2000];
Reply *rep;
int repNum;
};
struct Srch {
Srch *next;
Reply *rep;
double dScore;
};
struct Link {
char key[12];
int oTimes;
Link *next;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?