gpt4 book ai didi

c - 从 C 中的矩阵中删除分号

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

我正在尝试编辑我作为输入文件收到的矩阵中的分号,但我似乎无法取得任何进展。我在 main 中使用 while 循环来确定矩阵的维度,因为程序需要能够处理不同大小的矩阵。我确实知道它永远是一个方阵。我认为我的问题出在 read_file 函数中。我可以从文件中读取矩阵并将其打印到终端,但我无法删除分号。我尝试了几种不同的方法,包括 strtok,但最终总是得到垃圾数据。以下代码将读入输入文件并 printf 到终端,没有错误或警告,但它包含我需要删除的分号。这是我的代码:

void read_file(int *rows_p, int *columns_p, char matrix[*rows_p][*rows_p], char *file[]){

FILE *file_in;
file_in = fopen(file[1], "r");

/*Please not that the next few declarations and nested loops are commented out. I thought I should show this failed attempt.*/

/*char temp[*rows_p];
int new_col = (*columns_p + 1) / 2;
int i = 0;
int j;
int k;

while(fgets(temp, *columns_p, file_in) != NULL){
int ii = 0;
for(j = 0; j < *columns_p; j += 2){
if((temp[i] == '1') || (temp[i] == '0')){
matrix[i][ii] = temp[j];
ii++;
}
}
printf("%s", matrix[i]);
i++;
}
printf("\n");
*/

char temp[*rows_p][*columns_p];
int i = 0;
int j;
int k;

while(fgets(temp[i], *columns_p, file_in) != NULL){
for(j = 0; j < *columns_p; j++){
if((temp[i][j] == '1') || (temp[i][j] == '0')){
strcpy(matrix[i], temp[i]);
}
}
printf("%s", matrix[i]);
i++;
}

fclose(file_in);
}

这是输入文件中的内容(输入文件是 .csv):

0;0;0;0;0;0
0;0;0;1;0;0
0;1;0;1;0;0
0;0;1;1;0;0
0;0;0;0;0;0
0;0;0;0;0;0

这最终将用于生命游戏程序,但我发现自己无法删除分号。我以前做过类似的编辑,但我似乎无法弄清楚这一点。非常感谢您的帮助。

我想要实现的输出是,

000000
000100
010100
001100
000000
000000

我希望这是操作矩阵的最简单的形式。

最佳答案

虽然使用 fgets 和面向行的方法来分隔 .csv 文件中的值没有任何问题,但您可能会发现面向字符的方法有点问题一开始就更直观。

无论哪种情况,您都不应该将测试限制为 '0''1' 字符,因为 2-9 也可以组成任意数字。使用 ctype.h 中的 isdigit 对数字进行通用测试可以处理所有值。

无论您使用面向行还是面向字符的方法,目标都是相同的,您将在每个数字的开头找到行中的位置并调用 strtol (或strtoulstrtod (视情况而定)将数字字符串转换为数值,或者一次缓冲数字一个字符并在缓冲区上调用转换函数。 (实现转换调用由您完成)

在这里,分离值似乎是当前的绊脚石。采用面向字符的方法可能会有所帮助,那就是建立对一次处理一串字符、测试并根据当前字符采取正确操作的理解。从文件读取的角度来看,这再简单不过了,只需打开文件并一次读取一个字符,直到到达文件末尾和 EOF

一次循环一个字符,您需要跟踪当前的读取状态(我读取的是数字还是分隔符?)您的列计数基于从数字到分隔符的转换(或 '\n'EOF)。您的行计数基于'\n'EOF)。然后,只需验证每行(对于矩阵)具有相同数量的值,并且当读取完成时,行数与列数相同。 (您还应该确保同时处理任意两个分隔符——这由您决定)

一个用于从文件中解析矩阵的面向字符读取的简短示例可以按如下方式完成,而无需将自己限制为 '0''1' ,

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

int main (int argc, char **argv) {

int c, /* char read from file */
rows = 0, /* matrix rows */
cols = 0, /* matrix cols */
nvals = 0, /* values per row count */
havedigit = 0; /* flag - reading digits - 1 */
FILE *fp = argc > 1 ? fopen (argv[1], "r") : stdin;

if (!fp) { /* validate file open for reading */
fprintf (stderr, "error: file open failed '%s'.\n", argv[1]);
return 1;
}

for (;;) { /* loop until EOF */
c = fgetc(fp); /* get a character */
if (isdigit(c)) { /* test if digit */
havedigit = 1; /* set havedigit flag */
putchar (c); /* output char */
} /* end-of-row or end-of-file */
else if (c == '\n' || c == EOF) {
if (havedigit) { /* prev char read was digit */
nvals++; /* increment value count */
putchar ('\n'); /* output newline */
}
if (c == EOF) /* if EOF - bail */
break;
if (rows == 0) /* if first row, set cols */
cols = nvals;
else if (nvals != cols) { /* validate no. of cols */
fflush (stdout); /* output any bufferd chars */
fprintf (stderr, "\nerror: not a valid matrix.\n");
return 1;
}
rows++; /* increment row count */
nvals = 0; /* reset value per row count */
havedigit = 0; /* set digit flag to zero */
}
else { /* we have a separator */
if (havedigit) /* if last was digit */
nvals++; /* increment value per row */
havedigit = 0; /* set digit flag to zero */
}
}

if (fp != stdin) fclose (fp); /* close file if not stdin */

if (rows != cols) { /* validate rows == cols for sq. matrix */
fprintf (stderr, "error: not a square matrix.\n");
return 1;
}

return 0;
}

解析文件的方法有很多很多。使用多种方法将帮助您识别哪种方法最适合每种类型的解析问题。

示例输入文件

$ cat dat/matrix.csv
0;0;0;0;0;0
0;0;0;1;0;0
0;1;0;1;0;0
0;0;1;1;0;0
0;0;0;0;0;0
0;0;0;0;0;0

$ cat dat/matrix2.csv
0;0;0;0;0;0;1;0
0;0;0;1;0;0;0;1
0;1;0;1;0;0;1;0
0;0;1;1;0;0;0;1
0;0;0;0;0;0;1;1
0;0;0;0;0;0;0;0
1;1;1;0;0;1;1;1
0;0;0;1;1;0;0;0

示例使用/输出

$ ./bin/getchar_parse_matrix <dat/matrix.csv
000000
000100
010100
001100
000000
000000

$ ./bin/getchar_parse_matrix <dat/matrix2.csv
00000010
00010001
01010010
00110001
00000011
00000000
11100111
00011000

仔细检查一下,如果您还有其他问题,请告诉我。

关于c - 从 C 中的矩阵中删除分号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48479411/

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