stem.h
来自「信息检索中常用的技术」· C头文件 代码 · 共 29 行
H
29 行
/******************************* stem.h *********************************** Purpose: Header file for an implementation of the Porter stemming algorithm. Notes: This module implemnts a fast stemming function whose results are about as good as any other.**/#ifndef STEM_H#define STEM_H/******************************************************************************//**************************** Public Routines *****************************/#ifdef __STDC__extern int Stem( char *word ); /* returns 1 on success, 0 otherwise */#elseextern int Stem();#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?