gpt4 book ai didi

c - 如何打印二维矩阵c

转载 作者:行者123 更新时间:2023-11-30 20:30:13 26 4
gpt4 key购买 nike

我正在尝试使用二维数组模拟矩阵。但我陷入了运行时错误。我确信它发生在打印功能上,但我根本找不到解决方案。

obtn_matrix 是我用来创建矩阵数组的函数。我没有共享用于获取矩阵数组元素的 int 值的填充函数,因此打印的值将是内存中的值。但是,问题是,我根本无法打印这些值。 obtn_matrix后程序崩溃。

int main()
{
int**matrix,m,n;

obtn_matrix(matrix,m,n);
prnt_matrix(matrix,m,n);
getch();
}
void prnt_matrix(int** matrix,int m,int n)
{

for(int i=0;i<m;i++)
{
for(int j=0;j<n;j++)
{
printf("%d ",matrix[i][j]);
}
printf("\n");
}
}
void obtn_matrix(int** matrix,int m,int n)
{
printf("Please enter the column number: ");
fflush(stdin);
scanf("%d",&m);

printf("Please enter the row number: ");
fflush(stdin);
scanf("%d",&n);
matrix=create_matrix(m,n);
}

预期结果如下:

4542 64 274 4234
765 53 3523 5345
5145 154 545 545
5435 543 545 14

我将处理格式(%4d 等)。请提前致谢。

最佳答案

obtn_matrix 中,matrix、mn 的赋值在 main 中不可见,您需要使用指向它们的指针。

例如,使用 int * 数组,因为编译时维度未知:

#include <stdio.h>
#include <stdlib.h>

void prnt_matrix(int ** matrix,int m,int n)
{

for(int i=0;i<m;i++)
{
for(int j=0;j<n;j++)
{
printf("%d ",matrix[i][j]);
}
printf("\n");
}
}

int ** create_matrix(int m, int n)
{
int ** ma = calloc(m, sizeof(int*));

if (ma != NULL) {
int i, j;

for (i = 0; i != m; ++i) {
if ((ma[i] = malloc(n*sizeof(int))) == NULL)
return NULL;
for (j = 0; j != n; ++j) {
ma[i][j] = i*n + j;
}
}
}

return ma;
}

void obtn_matrix(int *** matrix,int * m,int * n)
{
printf("Please enter the row number: ");
fflush(stdin);
scanf("%d",m);

printf("Please enter the column number: ");
fflush(stdin);
scanf("%d",n);
*matrix=create_matrix(*m,*n);
}

void free_matrix(int ** matrix,int m,int n)
{
for(int i=0;i<m;i++)
{
if (matrix[i] == NULL)
/* matrix creation was aborted */
break;
free(matrix[i]);
}

free(matrix);
}

int main()
{
int ** matrix,m,n;

obtn_matrix(&matrix,&m,&n);
if (matrix != NULL) {
prnt_matrix(matrix,m,n);
free_matrix(matrix,m,n);
}
}

编译和执行:

pi@raspberrypi:~ $ gcc -pedantic -Wextra m.c
pi@raspberrypi:~ $ ./a.out
Please enter the row number: 3
Please enter the column number: 2
0 1
2 3
4 5

valgrind下执行

pi@raspberrypi:~ $ valgrind ./a.out
==10436== Memcheck, a memory error detector
==10436== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==10436== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info
==10436== Command: ./a.out
==10436==
Please enter the row number: 3
Please enter the column number: 2
0 1
2 3
4 5
==10436==
==10436== HEAP SUMMARY:
==10436== in use at exit: 0 bytes in 0 blocks
==10436== total heap usage: 6 allocs, 6 frees, 2,084 bytes allocated
==10436==
==10436== All heap blocks were freed -- no leaks are possible
==10436==
==10436== For counts of detected and suppressed errors, rerun with: -v
==10436== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 6 from 3)

请注意,也可以只分配一个 m*n int 数组,但在这种情况下,而不是使用 m[i][j] 你需要做m[i*n+j]

关于c - 如何打印二维矩阵c,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54717249/

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