我正在尝试在文本文件中搜索单词,但取得了一定的成功,但是代码并不总是有效。只是我不明白为什么它在循环内不起作用,但是当我手动执行时却起作用。
我知道很多要看的东西,但是请任何人可以帮助我。
#include <stdio.h>
#include<string.h>
#include<stdlib.h>
#include<ctype.h>
void main()
{
FILE *fp;
fp=fopen("testdictionary.txt","r");
char word[]="her";
char line[7];
int n;
int upper_limit=48;
int lower_limit=0;
int result=-1;
while(result!=0) {
n=(upper_limit+lower_limit)/2;
printf("Value of n:%d ",n);
fseek(fp,n,SEEK_SET);
// setting the file pointer to the beginning of the word. --
fseek(fp,-1,SEEK_CUR);
char tst;
do {
fseek(fp,-1,SEEK_CUR);
if(ftell(fp)==0) {
break;
}
tst=fgetc(fp);
if(tst=='\n') {
break;
}
fseek(fp,-1,SEEK_CUR);
} while(tst!='\n');
//----------------------------------------------------------
fgets(line,7,fp);
result=strcmp(line,strcat(word,"\n"));
printf(" Result:%d ",result);
if(result==1) {
upper_limit=n;
printf("Required 'word' is above the line of text.\n");
}
else if(result==-1) {
lower_limit=n;
printf("Required 'word' is below the line of text.\n");
}
else if(result==0) {
printf("Word found");
}
}
}
我的文本文件
aoo
bpp
cas
dzx
edf
fvb
gty
her
iwe
jqw
输出(当我运行上面的代码时。)
Value of n:24 Result:-1 Required 'word' is below the line of text.
Value of n:36 Result:-1 Required 'word' is below the line of text.
Value of n:1322 Result:1 Required 'word' is above the line of text.
Value of n:329639 Result:1 Required 'word' is above the line of text.
Value of n:84052197
我不了解的部分是,如果我手动输入n = 36,结果将显示0并找到单词。但是当我尝试自动搜索时,即使第二步后n的值变为36,循环不会中断,并给出怪异且较大的n值。
因此,当我自己输入n = 36(如下所示)时,我得到的预期结果是找到了“她”一词。
while(result!=0)
{
// n=(upper_limit+lower_limit)/2;
n=36;
printf("Value of n:%d ",n);
fseek(fp,n,SEEK_SET);
输出
Value of n:36 Result:0 Word found
Process returned 10 (0xA) execution time : 0.141 s
Press any key to continue.
我不知道这是否应该执行二进制搜索,但这就是我所知道的。我只是编程的初学者。
答案 0 :(得分:3)
函数Assert.assertThat(put(‘http://www.example.com’), body.match({id: “123”}));
不会具体返回 strcmp
或-1
(尽管可能会返回)。它返回值1
,0
或< 0
。
也
> 0
您无法将任何内容连接到
result = strcmp(line, strcat(word, "\n"));
因为该阵列没有空间。最好从文件字符串中删除换行符,而不是将其添加到目标字符串中。
即使可以,您也会在每次迭代中添加另一个换行符。所以我建议
char word[] ="her";