0

准确地说,我正在尝试从文件 A 复制到文件 B,每个单词中都没有字母“e”和“t”(the、peter 等),程序运行良好,但在outfile 的结尾我得到了一个奇怪的迹象。

Input: What says Lucentio to this shame of ours?
Output: What says  to this shame of ours?˙

(你能看到角色˙吗?)

我不想要它,我不知道那是什么,但它不是 EOF,我试图将其排除在复制之外,但它不起作用。我需要一些帮助。

代码:

char signHold[1];

int main(int *argc, char** argv)
{
    FILE* infile;
    FILE* outfile;

    char* string = NULL;
    if(argc != 3)
    {
        printf(stderr,"Error: Improper number of arguments");
        return EXIT_FAILURE;
    }
    remove(argv[2]);
    infile = fopen(argv[1],"r");
    while(feof(infile) == 0)
    {
        string = getWord(infile);
        if(checkDenied(string))
        addToFile(outfile, argv[2], string);

        addToFile(outfile, argv[2], signHold);
    }
    fclose(infile);
    free(string);
    return EXIT_SUCCESS;
}

char* getWord(FILE* ptr)
{
    char* tempString;
    size_t memSize = 0;
    int c;

    tempString = expandRealloc(NULL,sizeof(char));
    while(c = fgetc(ptr))
    {
        if(isalpha(c) != 0)
        {
            tempString = expandRealloc(tempString, (memSize+1)*sizeof(char)+1);
            tempString[memSize] = c;
            memSize++;
        }
        else
        {
            signHold[0] = c;
            break;
        }
    }
    tempString[memSize] = '\0';
    return tempString;
}

short int checkDenied(const char* str)
{
    int i;

    i = strspn("e", str);

    if(i >= 1)
    {
        i = strspn("t", str);
        if(i >= 1)
        {
            return EXIT_SUCCESS;
        }
    }
    return EXIT_FAILURE;
}

short int addToFile(FILE* ptr, char* directory, char* text)
{
    ptr = fopen(directory,"a+");
    fprintf(ptr,"%s", text);
    fclose(ptr);
    return EXIT_SUCCESS;
}
4

3 回答 3

0

这是状态机。让它使用可变大小的缓冲区留给读者一个练习;-)

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>

int main(int argc, char **argv)
{
    FILE *infile;
    FILE *outfile;

    char buff[100];
    size_t len,idx;
    int ch, state;

    if(argc != 3)
    {
        fprintf(stderr,"Error: Improper number of arguments");
        return EXIT_FAILURE;
    }
    infile = fopen(argv[1],"r");
    outfile = fopen(argv[2],"w");

    len = 0;
    for (state=0; state >= 0; ) {
        ch = fgetc(infile);
        if (isalpha(ch)) {
            if (ch == 'e') state |= 1;
            else if (ch == 't') state |= 2;
            if (state != 3) buff[len++] = ch;
            continue;
        }
    /* no character, this must be the end of a word. */
        if (state != 3) for(idx=0; idx < len; idx++ ) {
            fputc(buff[idx], outfile);
            }
        if (ch == EOF) {state = -1; continue;}
        fputc(ch, outfile);
        len = 0; state = 0;
        }
    fclose(infile);
    fclose(outfile);
    return EXIT_SUCCESS;
}
于 2012-06-24T17:11:47.520 回答
0

我相信这是存储在 signHold[1] 中的垃圾内存。您只允许 1 个字符并且不 NUL 终止它。这意味着当你写出问号时,它还会写出它之后第一个'\0'之前的任何内存。

于 2012-06-24T18:54:05.290 回答
0

首先,您假设在文件末尾fgetc返回0,但事实并非如此。它返回EOF。也许您正在阅读EOF,将其分配给一个字符,即signHold[0](这可能导致任何事情,因为EOF不适合char

然后您继续打印signHold其中包含一个随机字符,后跟谁知道什么,因为该字符串不是 NUL 终止的(它的大小是 1 并且它的第一个字符不是 ' \0'。也就是说,您正在打印任何可能发生在之后的内容signHold.(顺便说一句,这也是未定义的行为)。

于 2012-06-24T16:07:02.640 回答