gpt4 book ai didi

c - C 中的堆栈粉碎/缓冲区溢出

转载 作者:行者123 更新时间:2023-11-30 16:35:43 25 4
gpt4 key购买 nike

我有这个代码

    int Iminente(char tab[3][3], char comp, char jog, char str[3][3]){

int i, j, X = 0, val;
char col[4], diag[2][4];

strcpy(diag[0], &tab[0][0]); // Diagonal E-D C-B (= \ )
strcat(diag[0], &tab[1][1]);
strcat(diag[0], &tab[2][2]);

strcpy(diag[1], &tab[0][2]); // Diagonal D-E B-C (= / )
strcat(diag[1], &tab[1][1]);
strcat(diag[1], &tab[2][0]);

for(i = 0; i < 3; i++){
strcpy(col, &tab[0][i]); // Colunas
strcat(col, &tab[1][i]);
strcat(col, &tab[2][i]);

for(j = 0; j < 3; j++){
if(strcmp(str[j], tab[i]) == 0){ // Verifica linhas
Jogar(tab, comp, InvPosicao(i, j));

return 1;
}

if(strcmp(str[j], col) == 0){ // Verifica colunas
Jogar(tab, comp, InvPosicao(i, j));

return 1;
}

if(!X){ // Verifica diagonais
if(strcmp(str[j], diag[0]) == 0){
Jogar(tab, comp, InvPosicao(j, j));

return 1;
}else if(strcmp(str[j], diag[1]) == 0){
val = 2 - j;
Jogar(tab, comp, InvPosicao(val, j));

return 1;
}
}
}
X = 1;
}

return 0;
}

只有当我们到达指令return 0时才会发生错误。我找不到它具体在哪里。我只能说,所有信息都是由我(而不是用户)给出的,并且我根据我预测的长度定义了变量。
这是井字游戏的一部分。这是变量

tab - 3x3 table, each element is a char
comp - current computer char
jog - current player char
str - group of "strings" with 3 elements each with length 3 (null terminator not included)

i, j - iterators
X - "state" variable (not important)
val - not important
col - string with the current column
diag - group of "strings" with 2 elements each with length 4 (null terminator included)

值(value)观:

possible values for `str`:
char perder[3][3] = {{' ', jog, jog}, {jog, ' ', jog}, {jog, jog, ' '}};
char ganhar[3][3] = {{' ', comp, comp}, {comp, ' ', comp}, {comp, comp, ' '}};

value for `tab`:
char jogo[3][3] = {' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '}; // Elements can be ' ', 'O', or 'X'

values for `jog` and `comp`:
'O' or 'X'

strcat()strcpy()函数有关吗?

最佳答案

正如 @John3136 提到的,我的代码一团糟。
因此,为了解决这个问题,我实现了一个向字符串添加字符的函数:

void AdicionaCar(char *s, char c){

int length = strlen(s);
s[length] = c;
s[length+1] = '\0';

}

并用此函数替换了 strcatstrcpy 的所有实例。
然后用空终止符初始化变量 diagcol,使它们成为字符串。将形式参数更改为指针(不是全部),现在函数头如下所示:

int Iminente(char (*tab)[3], char comp, char jog, char (*str)[3])

关于c - C 中的堆栈粉碎/缓冲区溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48777701/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com