标题:求指点词典查找函数
只看楼主
blackshep
Rank: 2
等 级:论坛游民
帖 子:8
专家分:25
注 册:2017-12-20
结帖率:50%
已结贴  问题点数:20 回复次数:2 
求指点词典查找函数
#include    <stdio.h>
#include    <stdlib.h>
int main()
{
    FILE * fp;
    char word[20];
    char find[20];
    char ch;
    int len,i;
    printf("Please put in the word you want to look up:\n");
    gets(word);
    len=strlen(word);
    if((fp=fopen("5000_words.txt","r"))==NULL)
    {
        printf("Can not open the file !!!\n");
        exit(0);
    }
    fgets(find,len+1,fp);                     //求大佬指点把它改成只赋值每个换行符之后的len长度的字符给find字符数组
    while(ch!=EOF)
    {
        if(strcmp(find,word)==0)
        {
            while(ch!='\n')
            {
                ch=fgetc(fp);
                printf("%c",ch);
            }
            exit(0);
        }

        for(i=0;i<len;i++)
            ch=fgetc(fp);
        fgets(find,len+1,fp);
    }
    if(ch==EOF)
        printf("Not found!!\n");
    puts(find);
    fclose(fp);
    return 0;
}
搜索更多相关主题的帖子: 查找 char word find printf 
2017-12-21 15:45
吹水佬
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:432
帖 子:10064
专家分:41463
注 册:2014-5-20
得分:14 
试试用 fscanf(fp,"%s",find);
2017-12-21 16:17
blackshep
Rank: 2
等 级:论坛游民
帖 子:8
专家分:25
注 册:2017-12-20
得分:0 
回复 2楼 吹水佬
已解决,谢谢
2017-12-21 21:24



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-483582-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.865432 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved