📄 word.h
字号:
#ifndef Word_h#define Word_h#include <stdio.h>#define MaxWordLen 100#define Threshold 0.858 struct node{ int ID; struct node *next;};typedef struct node docNode;struct nnode{ char *name; struct nnode *next;};typedef struct nnode nameNode;class Word{ public: Word *left,*right; nameNode *nameList; int occurrence,isFeat; docNode *docList,*docListTail; Word(char *str); ~Word(); int stemStrcmp(char *str); int namecmp(char *name,char *str); private:};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -