russian_stemming.dct

来自「PostgreSQL7.4.6 for Linux」· DCT 代码 · 共 26 行

DCT
26
字号
/* * Autogenerated file * * Variant of the Lovin's stemmer which uses a longest match algorithm. * Endings are stored in a suffix tree. */#ifdef DICT_BODYtypedef struct {	uint8	val;	uint8	flag;	uint8	right;	uint16	child;} ru_RUKOI8R_NODE;/* is exists left tree ? */#define L       0x01/* finish word flag */#define F       0x02#define ISLEFT(x)       (((ru_RUKOI8R_NODE*)x)->flag & L)#define ISFINISH(x)     (((ru_RUKOI8R_NODE*)x)->flag & F)#define MINLENREST	3static ru_RUKOI8R_NODE ru_RUKOI8R_endstree[]={	{'

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?