【问题标题】:C - Process exited with error code 3221225477C - 进程退出,错误代码 3221225477
【发布时间】:2016-07-17 08:31:08
【问题描述】:

我正在为我们的编译器设计主题做一个移位减少算法。这是代码。

void shiftReduce(char str[MAX_CHAR], int prodNum, int line)
{
    int limit = 5, y=0;
    int substrFlag = 1; //0 true 1 false
    int ctr,x, counter;
    int match, next;
    char stack[MAX_CHAR];
    clearString(stack);
    OUTER:while ((strcmp(stack, prod[0].left) != 0) && (y < limit))
    {
        addChar(stack, str[0]);
        strcpy(str, dequeue(str));
        printf("Stack = %s\nQueue = %s\n", stack, str);
        for (ctr = 0; ctr < prodNum; ctr++)
        {
            if (strstr(stack, prod[ctr].right) != NULL)
            { //substring found
                substrFlag = 0;
                strcpy(stack, replace(stack, prod[ctr].right, prod[ctr].left));
                goto OUTER;
            }
        }
        if ((str[0] == '\n') || (str[0] == '\0'))
            y++;
    }
    if (strcmp(stack, prod[0].left) == 0)
        ;//printf("%s - Accepted.\n", stack);
    else
        printf("Syntax error on line %i\n", line);
}

当我评论printf("Stack = %s\nQueue = %s\n", stack, str); 行时,它运行良好。但是当我取消注释时,它会返回代码3221225477

顺便说一句。这是出队函数:

char * dequeue (char str[MAX_CHAR])
{
    int x = 0; char temp;
    for (x = 0; x < length(str); x++)
    {
        if ((x+1) < length(str))
            str[x] = str[x+1];
    }
    return str;
}

和addChar函数:

void addChar (char * str, char letter)
{
    int a = 0;
    while (str[a] != '\0')
        a++;
    str[a] = letter;
    str[a+1] = '\0';
    return;
}

最后替换函数。

char * replace (char orig[MAX_CHAR], char substr[MAX_CHAR], char rep[MAX_CHAR])
{
    int match, end=0, next=0;
    int flag = 0; //0 true 1 false
    char temp [MAX_CHAR];
    char store[MAX_CHAR];
    if (strstr(orig, substr) == NULL)
        return NULL;
    int x,y;
    for (x = 0; x < length(orig); x++)
    { 
        if (orig[x] == substr[0]) //if current character  is equal to first character of substring
        {
            match = x;
            for (y = 0; y < length(substr); y++)
            { 
                if (orig[match+y] != substr[y])
                {
                    flag = 1;
                    break;  
                }
            }
            if (flag == 0)
            {
                next = match + length(substr);
                for (y = 0; y < length(rep); y++)
                { 
                    temp[match+y] = rep[y]; 
                    end = (match+y);
                }
                for (y = next; y < length(orig); y++)
                { 
                    temp[y] = orig[next+(y-next)];
                }
                return temp;
            }
        }
        else
        {
            addChar(temp, orig[x]);
        }
    }
    return temp;
}

PS。 prod 数组:

struct RULES
{
    char left[MAX_CHAR];
    char right[MAX_CHAR];
} RULES;
struct RULES prod[MAX_RULES];

【问题讨论】:

  • "...它返回代码 3221225477..." 你是什么意思 returns? “返回”在编程中具有相当特定的含义,但是您要询问的功能是void。你的意思是它会引发错误吗?
  • 32212254770xC0000005,这是 Windows 程序员非常熟悉的数字... ;-)

标签: c windows shift-reduce


【解决方案1】:

当我评论printf("Stack = %s\nQueue = %s\n", stack, str); 行时,它运行良好。但是当我取消注释时,它会返回代码3221225477

那么很可能stackstr 没有被0 终止或指向无效内存。

【讨论】:

    猜你喜欢
    • 2022-01-06
    • 1970-01-01
    • 1970-01-01
    • 2016-08-11
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-03-06
    相关资源
    最近更新 更多