0

在这部分程序中,我想读取一个文本文件并将 txt 文件中的字符串长度输入 lenA,但是当 str1.fa 包含 10 时,程序输出 5,对于 6 个字符显示 3。

   #include <iostream.h>
   #include <stdio.h>
   using namespace std;

   int main(){
int lenA = 0;
FILE * fileA;
char holder;
    char *seqA=NULL;
char *temp;

//open first file
fileA=fopen("d:\\str1.fa", "r");

//check to see if it opened okay
if(fileA == NULL) {
    perror ("Error opening 'str1.fa'\n");
    exit(EXIT_FAILURE);
}

//measure file1 length
while(fgetc(fileA) != EOF) {
    holder = fgetc(fileA);
    lenA++;
    temp=(char*)realloc(seqA,lenA*sizeof(char));
    if (temp!=NULL) {
        seqA=temp;
            seqA[lenA-1]=holder;
    }
    else {
        free (seqA);
        puts ("Error (re)allocating memory");
        exit (1);
    }
}
cout<<"len a: "<<lenA<<endl;
free(seqA);
fclose(fileA);

    system("pause");
return 0;
}
4

2 回答 2

2

您正在丢弃所有其他字符,因为您在fgetc每次循环迭代中调用了两次。

改变这个:

while(fgetc(fileA) != EOF) {
    holder = fgetc(fileA);

对此:

while((holder = fgetc(fileA)) != EOF) {
于 2013-03-02T11:25:12.283 回答
1

只需打开文件并获取它的大小。跳过任何内存分配和字符读取...

FILE *f = fopen(fn, "r");
fseek(f, SEEK_END, 0);
long int lenA = ftell(f);
fclose(f);
于 2013-03-02T12:53:10.420 回答