gpt4 book ai didi

C 数组在循环外打印不正确

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

我遇到一个问题,当在用于读取文件内容的循环之外时,我的数组将无法正确打印。代码如下:

int main(int argc, char **argv)
{
char *fileArray[78];
int i, j;
DIR *d;
struct dirent *dir;
char arra[128][128];
char *arra1[14284][128];
char line[1024];
char line1[1024];
char noiseList[128][128];
char *noiseList1[14][128];
char *token;
char *token1;
char *path = "./alerts2013/2013/";
char *path1 = "./Noise_and_Concepts/";
char *fileName;
char *fileName1;
char seps[] = " ,\t\n";
FILE *myfile;
FILE *noise;
int size = 0;
d = opendir("./alerts2013/2013");
fileName1 = stradd(path1, "noise.txt");
//printf("%s\n", fileName1);
noise = fopen(fileName1, "r");
if (noise == 0)
{
printf("can not open file \n");
exit(1);
}
int a, b;
for(a = 0; a < 128; a++) {
line[a] = '\0';
}

for(a = 0; a < 128; a++) {
for(b = 0; b < 128; b++) {
noiseList[a][b] = '\0';
noiseList1[a][b] = '\0';
arra[a][b] = '\0';
arra1[a][b] = '\0';
}
}
i = 0;
j = 0;
int k = 0;
int l = 0;
int m = 0;
int n = 0;
int q;
int r;
while(fgets(line, sizeof(line), noise) != NULL) {
strcpy(noiseList[k], line);
//printf("%s", noiseList[k]);
token = strtok(noiseList[k], seps);
while(token != NULL )
{
/* While there are tokens in "string" */
//printf("%s\n", token);
//printf("array ----> %s\n", token);

lower_string(token);
noiseList1[n][0] = token;
n++;
/* Get next token: */
token = strtok( NULL, seps );

}
k++;
}

if (d)
{
while ((dir = readdir(d)) != NULL)
{
fileArray[i] = dir->d_name;
//printf("%s\n", fileArray[i]);
fileName = stradd(path, dir->d_name);
//printf("%s\n", fileName);
free(fileName);
myfile = fopen(fileName,"r");
if (myfile == 0)
{
printf("can not open file \n");
exit(1);
}

for(i = 0; i < 128; i++) {
line1[i] = '\0';
}

if(myfile != NULL) {
while(fgets(line1, sizeof(line1), myfile) != NULL) {
strcpy(arra[l], line1);
//printf("Tokens:\n" );
/* Establish string and get the first token: */
token = strtok(arra[l], seps);
while(token != NULL )
{
/* While there are tokens in "string" */
//printf("%s\n", token);
//printf("array ----> %s\n", token);

lower_string(token);
arra1[m][0] = token;
printf("Arra1: %s\n", arra1[m][0]); //PRINTING
//CORRECTLY HERE
size++;
m++;
/* Get next token: */
token = strtok( NULL, seps );

}


//printf("array ----> %s ", &arra[i]);
i++;

}
}

fclose(myfile);


i++;
}

closedir(d);
}

int p;
int w;
printf("%d\n", size);
/*for(p = 0; p < 14; p++) {
printf("%s\n", noiseList1[p][0]);
}*/
for(w = 0; w < size; w++) { //PRINTING INCORRECTLY HERE
printf("Arr1 (final): %s\n", arra1[w][0]);
}

fclose(noise);
return(0)
}

在第一个 printf 语句不在注释中时,数组打印正确。但是,在 for 循环中而不是在代码底部的注释中,它会截掉数组中字符串的一些字母。例如,未认证可能会变成通知。我不知道为什么会发生这种情况。我认为我的数组保存不正确,但我不完全确定。我该如何解决这个问题?

最佳答案

嗯,这是我见过的最辣的意大利面!

char *arra1[14284][128]; 创建 (14284*128) 个字符指针,而不是 14284 个单独的 128 个字符的字符串。我感觉你不是故意的。

但无论如何,strtok 返回一个指针,然后将其分配给 arra1 的第 [m][0] 个指针。您永远不会arra1 中的每个 [m] 值使用 127 个指针。

我不是 100% 可以无限期地使用 strtok 返回的指针。看起来该指针是 arra[l] 的一部分,它似乎被 while 循环破坏了。我什至没有看到 l 增加! 如果您增加它,该程序可能会工作

我认为你真正想做的是创建 14284 个字符串,如下所示:char arra1[14284][128];

然后,当您在每个 strtok 之后获取 token 时,您应该 strcpy(arra1[m], token)

关于C 数组在循环外打印不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46750813/

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