📄 stoplist.c
字号:
/* Determine if a word is on the stoplist or not. *//* Copyright (C) 1997, 1998 Andrew McCallum Written by: Andrew Kachites McCallum <mccallum@cs.cmu.edu> This file is part of the Bag-Of-Words Library, `libbow'. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation, version 2. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA */#include <bow/libbow.h>#include <stdlib.h>#include <ctype.h> /* for isupper */static bow_strtrie *stopword_strie;/* This is defined in stopwords.c */extern char *_bow_builtin_stopwords[];static void init_stopwords () __attribute__ ((constructor));static void init_stopwords (){ char **word_ptr; stopword_strie = bow_strtrie_new (); for (word_ptr = _bow_builtin_stopwords; *word_ptr; word_ptr++) { bow_strtrie_add (stopword_strie, *word_ptr); }}/* Add to the stoplist the white-space delineated words from FILENAME. Return the number of words added. If the file could not be opened, return -1. */intbow_stoplist_add_from_file (const char *filename){ FILE *fp; char word[BOW_MAX_WORD_LENGTH]; int count = 0; if ((fp = fopen (filename, "r")) == NULL) return -1; if (!stopword_strie) init_stopwords (); while (fscanf (fp, "%s", word) == 1) { bow_strtrie_add (stopword_strie, word); count++; bow_verbosify (bow_screaming, "Added to stoplist: `%s'\n", word); } bow_verbosify (bow_verbose, "Added %d words from `./.bow-stopwords'\n", count); return count;}/* Empty the default stoplist, and add space-delimited words from FILENAME. */voidbow_stoplist_replace_with_file (const char *filename){ if (stopword_strie) bow_strtrie_free (stopword_strie); stopword_strie = bow_strtrie_new (); bow_stoplist_add_from_file (filename);}voidbow_stoplist_add_word (const char *word){ bow_strtrie_add (stopword_strie, word); bow_verbosify (bow_screaming, "Added to stoplist: `%s'\n", word);}intbow_stoplist_present (const char *word){ return bow_strtrie_present (stopword_strie, word);}#define stophash_sizepower 14#define stophash_size (1 << stophash_sizepower)static int stophash[stophash_size];static const unsigned stophash_mask = (1 << stophash_sizepower) - 1;static void stophash_init() __attribute__ ((constructor));static void stophash_init(){ unsigned h; char **word_ptr; char *s; for (h = 0; h < stophash_size; h++) stophash[h] = 0; for (word_ptr = _bow_builtin_stopwords; *word_ptr; word_ptr++) { s = *word_ptr; /* This code must match exactly int4str.c:_str2id */ for (h = 0; *s; s++) h = 131*h + *s; h &= stophash_mask; stophash[h] = 1; } }intbow_stoplist_present_hash (const char *word, unsigned hash){ if (stophash[hash & stophash_mask] == 0) return 0; return bow_strtrie_present (stopword_strie, word);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -