gpt4 book ai didi

c - 引用矩阵 - C

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

我试图通过引用接收一个矩阵并将元素添加到另一个互补矩阵中。也就是说,我的方法将接收 3 个参数:一个矩阵、一行和一列。

我不能拿走填充新矩阵时收到的行和列。好吧,我在使用此方法时遇到了问题:

int **matrizComplementar(int **matOriginal, int linha, int coluna){

int y = 0;
int k = 0;
// Aloca espaço para matriz complementar
int ** matCompl = retornarMatrizQuadrada(N-1);

for(int i = 0; i < N; i++){
if(i != linha){
for(int j = 0; j < N; j++){
if(j != coluna)
{
matCompl[y][k] = matOriginal[i][j]; <<< When i read or write
I get "Sigment Default"
k++;
}
}
y++;
}
k = 0;
}
return matCompl;
}

完整代码如下。

int ** preecherMatriz(int ** mat){

// Preenche a matriz inicial
for( int k = 0; k < N; k++ ){
for( int l = 0; l < N; l++ ){
printf("Entre com o Valor [%d][%d]: ", k ,l );
scanf("%d", &mat[k][l]);
}
}
}

int ** retornarMatrizQuadrada(int tamN){

// Aloca matriz de tamanho N
int ** mat;
mat = (int **)malloc((tamN)*sizeof(int*));
for (int i=0; i<tamN; i++)
mat[i] = (int *)malloc((tamN)*sizeof(int));

return mat;
}

void imprimirMatriz(int ** m){

// Mostra ao usuário
printf("\nMatriz complementar:\n");
for( int k = 0; k < N-1; k++ ){
for( int l = 0; l < N-1; l++ )
printf("%d ", &m[k][l]);
printf("\n");
system("pause");
}
}

int ** matrizComplementar(int **matOriginal, int linha, int coluna){

int y = 0;
int k = 0;
// Aloca espaço para matriz complementar
int ** matCompl = retornarMatrizQuadrada(N-1);

for(int i = 0; i < N; i++){
if(i != linha){
for(int j = 0; j < N; j++){
if(j != coluna)
{
matCompl[y][k] = matOriginal[i][j];
k++;
}
}
y++;
}
k = 0;
}
return matCompl;
}

int main(void) {
imprimirMatriz(matrizComplementar(preecherMatriz(retornarMatrizQuadrada(N)), 1,2));
}

最佳答案

comments 中所述:

My compiler tells me that you don't return a value from preecherMatriz(), which is sad because you use that value when you call matrizComplementar() — it's probably why your program crashes. Your 4 function calls in a single line are scary. I'd not write code like that, especially where memory allocation is involved. Your printf() also prints the address of the array element (incorrectly): you should drop the &.

One reason for not liking the multiple function calls — you don't keep track of the allocated memory, so you can't free it. It may not matter here; it does in most programs.

这是一个紧密基于您的代码的 MCVE,它运行时不会崩溃并产生我期望的结果:

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

#define N 5

static int **preecherMatriz(int **mat)
{
for (int k = 0; k < N; k++)
{
for (int l = 0; l < N; l++)
{
printf("Entre com o Valor [%d][%d]: ", k, l);
scanf("%d", &mat[k][l]);
}
}
return mat;
}

static int **retornarMatrizQuadrada(int tamN)
{
int **mat;
mat = (int **)malloc((tamN) * sizeof(int *));
for (int i = 0; i < tamN; i++)
mat[i] = (int *)malloc((tamN) * sizeof(int));
return mat;
}

static void imprimirMatriz(int **m)
{
printf("\nMatriz complementar:\n");
for (int k = 0; k < N - 1; k++)
{
for (int l = 0; l < N - 1; l++)
printf(" %3d", m[k][l]);
printf("\n");
}
}

static int **matrizComplementar(int **matOriginal, int linha, int coluna)
{
int y = 0;
int k = 0;

int **matCompl = retornarMatrizQuadrada(N - 1);

for (int i = 0; i < N; i++)
{
if (i != linha)
{
for (int j = 0; j < N; j++)
{
if (j != coluna)
{
matCompl[y][k] = matOriginal[i][j];
k++;
}
}
y++;
}
k = 0;
}
return matCompl;
}

int main(void)
{
imprimirMatriz(matrizComplementar(preecherMatriz(retornarMatrizQuadrada(N)), 1, 2));
}

唯一的变化是使函数静态(以绕过我极其挑剔的编译器选项),加上额外的返回和删除的&,并且我删除了矩阵打印函数中的system("pause");。我没有添加对内存分配失败的检查——应该这样做,但我没有这样做。

示例输出(程序名称mtx29):

$ mtx29
Entre com o Valor [0][0]: 100
Entre com o Valor [0][1]: 101
Entre com o Valor [0][2]: 102
Entre com o Valor [0][3]: 103
Entre com o Valor [0][4]: 104
Entre com o Valor [1][0]: 210
Entre com o Valor [1][1]: 211
Entre com o Valor [1][2]: 212
Entre com o Valor [1][3]: 213
Entre com o Valor [1][4]: 214
Entre com o Valor [2][0]: 320
Entre com o Valor [2][1]: 321
Entre com o Valor [2][2]: 322
Entre com o Valor [2][3]: 323
Entre com o Valor [2][4]: 324
Entre com o Valor [3][0]: 498
Entre com o Valor [3][1]: 497
Entre com o Valor [3][2]: 476
Entre com o Valor [3][3]: 465
Entre com o Valor [3][4]: 454
Entre com o Valor [4][0]: 511
Entre com o Valor [4][1]: 522
Entre com o Valor [4][2]: 533
Entre com o Valor [4][3]: 544
Entre com o Valor [4][4]: 555

Matriz complementar:
100 101 103 104
320 321 323 324
498 497 465 454
511 522 544 555
$

所以,您的代码已经接近工作,但要么您忽略了编译器警告(不要!),要么您的编译器没有为您提供所需的所有帮助 - 了解如何调高警告级别。

所示代码 (mtx29.c) 在使用 GCC 8.1.0 运行 macOS High Sierra 10.13.6 的 Mac 上干净地编译,命令行:

$ gcc -O3 -g -std=c11 -Wall -Wextra -Werror -Wmissing-prototypes -Wstrict-prototypes \
> mtx29.c -o mtx29
$

关于c - 引用矩阵 - C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51237678/

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