gpt4 book ai didi

c - 从 txt.file 读取数据并打印出其二维数组内容

转载 作者:行者123 更新时间:2023-12-02 15:47:49 24 4
gpt4 key购买 nike

我需要一些帮助,我想从文件中打印信息(以字符为单位)

我决定使用二维数组,因为数据看起来像这样

0 0 . . . 
0 0 . . .
. . . . .
. . . . .
. . . . .

我现在准备的代码好像无法打印出来

请看下面:

/* Read from file, pass on file contents to a 2D array, Print file contents from 2D array*/

#include<stdio.h>
#include<string.h>
#define N 5


//My proposed function to print an array with contents from a file
void printboard(int **a, int n, int n);

int main(int argc, char *argv[])
{
char linestr[100];
int board[N][N];
int k;
int h=0, l=0;
if(argc==2) //File should be called from the terminal hence working with argc & argv
{
FILE *fp;
fp = fopen(argv[1], "r");


if(fp == NULL)
{
printf("Error, can't open '%s' file!!!\n", argv[1]);
return -1;
}
while (fgets(linestr,sizeof linestr, fp) != NULL)
for(k=0; k<strlen(linestr); k++)
{
if (linestr[k]!='\n')
{
board[h][l]=(int)linestr[k];
l++;


}
h++;
l=0;
}
fclose(fp);
}
printboard(board,h,l);

return 0;
}

void printboard(int **a, int n, int n)
{
int i, j;
for (i=0; i< N; i++)
{
for (j=0; j< N; j++)
{
printf("%c", a[i][j]);
}
printf("\n");
}


}

我对 C 语言有非常基础的了解,并且 1.5 个月前才开始编码。社区有什么建议可以解决这个问题或者做得更好吗?目的是以二维数组格式打印文件的内容。我真的很想让数据与 2D 数组一起使用,因为我需要进一步研究它以在名为 Peg Solitaire 的游戏中移动“0”。

最佳答案

函数中的参数名称必须是唯一的。因此,您的打印板函数不能有两个“n”参数,您必须更改一个名称(更改为“m”或其他名称)。另外,由于您正在打印 n x n 矩阵并且您已经通过预处理器定义了“N”,您是否还需要这些参数? :)

数组(打印板的第一个参数)的传递有点棘手,需要一些关于指针和内存如何工作的知识。请参阅此处的讨论:

http://cboard.cprogramming.com/c-programming/97898-passing-2-dimensional-array-function.html

这归结为将函数定义更改为:

void printboard(int a[][N], int m, int n);

一件小事:为了打印你的数字,你可能想将它们打印为整数而不是字符,所以你应该改变

printf("%c", a[i][j]);

printf("%d ", a[i][j]);

我添加了空格,以便在打印到终端时数字会一起运行。

就解析输入而言,这是一个完整的主题。我建议 strtok 在您从文件中读取行时将其分解。然后,您将使用 sscanf 之类的工具将数据存储到板数组中。请参阅这些引用文献:

http://www.cplusplus.com/reference/clibrary/cstdio/sscanf/ http://www.cplusplus.com/reference/clibrary/cstring/strtok/

关于c - 从 txt.file 读取数据并打印出其二维数组内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8249659/

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