gpt4 book ai didi

c - 为什么这个矩阵初始化为 2x4 而不是 2x2?

转载 作者:太空宇宙 更新时间:2023-11-04 01:27:09 25 4
gpt4 key购买 nike

我正在尝试创建一个函数,该函数将从一个更大的矩阵返回一个子矩阵。函数是

double **getSubmatrix(double **matrix, int n, int m, int row1, int row2, int col1, int col2){
int i, j, subrow, subcol;
subrow = 0;
subcol = 0;
int numSubRows = row2 - row1 + 1;
int numSubCols = col2 - col1 + 1;

// Create Submatrix with indicated size
double **subMatrix = (double **)malloc(sizeof(double *) * numSubRows);
for (i = 0; i < numSubRows; i++) {
subMatrix[i] = (double *)malloc(sizeof(double) * numSubCols);
}
// Add values from matrix into subMatrix
for (i = row1; i <= row2; i++) {
for (j = col1; j <= col2; j++) {
subMatrix[subrow][subcol] = matrix[i][j];
subcol += 1;
}
subrow += 1;
}
return subMatrix;

函数的调用是

mat2 = getSubmatrix(mat1, 3, 4, 1, 2, 2, 3)

而 mat1 是一个带值的 3x4 矩阵

8  2  4  1
10 4 2 3
12 42 1 0

我期望 subMatrix 返回一个矩阵

2  3
1 0

但我只是得到

2  3
0 0

因为 SubMatrix 变成了

2  3  0  0
0 0 1 0

还有段错误,即使 numSubRows 和 numSubCols 都是 2。我觉得我遗漏了一些明显的东西,但我不确定它是什么。

最佳答案

for (i = row1; i <= row2; i++) {
for (j = col1; j <= col2; j++) {
subMatrix[subrow][subcol] = matrix[i][j];
subcol += 1;
}
subrow += 1;
}

在上面的循环中,当递增 subrow 时,您未能将 subcol 设置回零。这就是为什么您会看到级联效应(未触及的单元格标记为 以使其更明显):

2 3 . .
. . 1 0

代替:

2 3
1 0

如果您希望对代码进行最少的必要更改,应该是:

for (i = row1; i <= row2; i++) {
for (j = col1; j <= col2; j++) {
subMatrix[subrow][subcol] = matrix[i][j];
subcol += 1;
}
subrow += 1;
subcol = 0; // added this line.
}

但是,实际上完全放弃那些 subXXX 变量可能更好,因为您在两个维度上都使用了一个固定基数:

for (i = row1; i <= row2; i++)
for (j = col1; j <= col2; j++)
subMatrix[i-row1][j-col1] = matrix[i][j];

我想顺便提一下另外两件事。首先,您通常应该始终检查 malloc() 的返回值,即使您仅使用它来退出并显示错误消息。这比继续执行更难调试的未定义行为更容易接受。

而且,在 C 中,您不应该强制转换 malloc() 的返回值。 C 非常有能力将 void * 返回值隐式转换为任何其他指针类型,显式转换可以隐藏某些细微错误。


有关更强大的变体,请参阅以下内容。它会预先进行更多的健全性检查,以确保您没有做一些“奇怪的事情”。它还会检测分配内存的问题,并在必要时自行清理。

它还有一个额外的功能,可以自动神奇地填充变量(如果你提供的话)子矩阵的高度和宽度。如果您提供 NULL 而不是指针,它就不会担心。

#include <stdlib.h>

double **getSubmatrix (
double **matrix,
int height, int width,
int row1, int row2,
int col1, int col2,
int *pHeight, int *pWidth
) {
// Check parameters for validity up front.

if ((row1 < 0) || (row1 >= height))
return NULL;
if ((row2 < 0) || (row2 >= height))
return NULL;
if (row2 < row1)
return NULL;

if ((col1 < 0) || (col1 >= width))
return NULL;
if ((col2 < 0) || (col2 >= width))
return NULL;
if (col2 < col1)
return NULL;

// Allocate first level, return NULL if no good.

double **subMatrix = malloc(sizeof(double *) * (row2 - row1 + 1));
if (subMatrix == NULL) return NULL;

// Allocate second level. If any fail, free all previous.

for (int row = row1; row <= row2; row++) {
subMatrix[row - row1] = malloc (sizeof(double) * (col2 - col1 + 1));
if (subMatrix[row - row1] == NULL) {
for (int rowfree = 0; rowfree < row; rowfree++) {
free (subMatrix[rowfree]);
}
free (subMatrix);
return NULL;
}
}

// Now have fully allocated sub-matrix, give size if desired.

if (pHeight != NULL)
*pHeight = row2 - row1 + 1;

if (pWidth != NULL)
*pWidth = col2 - col1 + 1;

// Transfer the sub-matrix data and return it.

for (int row = row1; row <= row2; row++)
for (int col = col1; col <= col2; col++)
subMatrix[row - row1][col - col1] = matrix[row][col];

return subMatrix;
}

您可以使用以下测试工具查看它的运行情况。

#include <stdio.h>

int main (void) {
double **ipp = malloc (sizeof (double *) * 3);

ipp[0] = malloc (sizeof (double) * 4);
ipp[1] = malloc (sizeof (double) * 4);
ipp[2] = malloc (sizeof (double) * 4);

ipp[0][0] = 8; ipp[0][1] = 2; ipp[0][2] = 4; ipp[0][3] = 1;
ipp[1][0] = 10; ipp[1][1] = 4; ipp[1][2] = 2; ipp[1][3] = 3;
ipp[2][0] = 12; ipp[2][1] = 42; ipp[2][2] = 1; ipp[2][3] = 0;

for (int row = 0; row < 3; row++) {
for (int col = 0; col < 4; col++) {
printf ("%5.2f ", ipp[row][col]);
}
putchar ('\n');
}

putchar ('\n');
int h, w;
double **part = getSubmatrix (ipp, 3, 4, 1, 2, 2, 3, &h, &w);
if (part == NULL) {
puts ("Could not get sub-matrix");
} else {
for (int row = 0; row < h; row++) {
for (int col = 0; col < w; col++) {
printf ("%5.2f ", part[row][col]);
}
putchar ('\n');
}
}

return 0;
}

关于c - 为什么这个矩阵初始化为 2x4 而不是 2x2?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29136801/

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