我有一个文本文件中的单词词典,我需要在文本文件中找到某些单词。例如由字母 {q, a, z, w, s, x, e, d, c, r, f, v,t,g,b} 或以 {d,o 结尾的单词,我们}。我正在寻找一种可以做到这一点的方法。将所有单词放入数组中最容易吗?还是我应该将其全部保存在文本文件中?我试过文本文件的方法,但被卡住了。这就是我所拥有的。非常感谢!
int size, count;
char *p;
char *words[];
FILE * dict_file;
dict_file = fopen("MyDictionary.txt", "r");
fseek(dict_file, 0, SEEK_END); // seek to end of file
size = ftell(dict_file); // get current file pointer
fseek(dict_file, 0, SEEK_SET); // seek back to beginning of file
// proceed with allocating memory and reading the file
p = dictionary;
while (p = fgets(p, size, dict_file))
{
p += strlen(p);
words[count] = p;
count++;
}