前提・実現したいこと
【c言語】
入力したキーワードを、読み込んだテキストファイルの中から総当たり法で探し出すプログラムを作成しています。
■■入力したキーワードが、テキストのどこに位置するのか、を表示する機能を実装したいのですが、どのキーワードを打ち込んでも0になってしまいます。
読み込むテキストファイル ファイル名(text.txt)
Snow is a challenging natural phenomenon to visually simulate. While the graphics community has previously considered accumulation and rendering of snow, animation of snow dynamics has not been fully addressed.
表示される内容(ターミナル)
ファイル名を入力してください text1.txt ファイルtext1.txtの内容 Snow is a challenging natural phenomenon to visually simulate. While the graphics community has previously considered accumulation and rendering of snow, animation of snow dynamics has not been fully addressed. 文字数=215 キーワードを入力してください been キーワード:been /*まちがい*/ /*どのキーワードでも0になってしまう*/ 位置:0
###正しい表示(ターミナル)
ファイル名を入力してください text1.txt ファイルtext1.txtの内容 Snow is a challenging natural phenomenon to visually simulate. While the graphics community has previously considered accumulation and rendering of snow, animation of snow dynamics has not been fully addressed. 文字数=215 キーワードを入力してください been キーワード:been /*正しい表示*/ 位置:192
ソースコード
c
1#include<stdio.h> 2#include<stdlib.h> 3#include<string.h> 4int main(void) 5{ 6 char filename[21]; 7 FILE *fp; 8 char t[2000]; 9 char k[80]; 10 int n, i, j, found, klen, tlen; 11 12 tlen = strlen(t); 13 klen = strlen(k); 14 n = 0; 15 i = 0; 16 found = 0; 17 printf("ファイル名を入力してください\n"); 18 scanf("%s",filename); 19 if((fp=fopen(filename,"r"))==NULL) 20 { 21 printf("FILE OPEN ERROR\n"); 22 exit(1); 23 } 24 printf("ファイル%sの内容\n",filename); 25 26 while(fscanf(fp,"%c",&t[n])!=EOF) 27 { 28 printf("%c",t[n]); 29 n++; 30 } 31 printf("文字数=%d\n",n); 32 33 printf("キーワードを入力してください\n"); 34 scanf("%s",k); 35 36 printf("キーワード:%s\n",k); 37 while(i+klen-1 < tlen && found !=1 ) 38 { 39 j=0; 40 while(j<klen && t[i+j] == k[j]) j++; 41 if(j == klen) found = 1; 42 else i++; 43 } 44 45 if(found==1){ 46/*******************手こずっているところ*******************/ 47 printf("位置:%d\n",i); 48 } 49 else{ 50 printf("見つかりませんでした\n"); 51 } 52 53 fclose(fp); 54 return 0; 55}
i
がキーワードの位置をしめすと思ったのですが、違いました。
キーワードの位置の実装方法を教えて下さい。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/12 09:52
2021/01/12 09:59