簡體   English   中英

C - 進程退出,錯誤代碼 3221225477

[英]C - Process exited with error code 3221225477

我正在為我們的編譯器設計主題做一個 shift-reduce 算法。 這是代碼。

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;
}

附注。 prod陣列:

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

當我評論printf("Stack = %s\\nQueue = %s\\n", stack, str); 行,效果很好。 但是當我取消注釋它時,它返回代碼3221225477

那么很可能stackstr沒有被0終止或指向無效內存。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM