传递2个未知大小的矩阵作为参数

时间:2013-11-27 22:54:37

标签: c function matrix signature declare

首先 - 我的代码有效:

void main(){
int mat1[5][5]={{1,2,3,4,5},
                {6,2,5,5,6},
                {1,5,6,6,7},
                {4,5,6,7,8},
                {5,6,7,8,9}};
int mat2[3][3]={{1,2,3},
                {2,3,4},
                {3,4,5}};
    int mat1size=5,mat2size=3,maxsize=MAX(mat1size,mat2size),*ptr,arraysize=0;
    ptr=func(mat1,mat2,maxsize,&arraysize);
    .
    .
    .
    }


int* func(int mat1[][5],int mat2[][3],int maxsize,int* arraysize){
int i,j,*ptr=(int*)malloc(sizeof(int)*3);
    if(fptr==NULL){
    printf("Out of memory!");
    return;
    }
for(i=0;i<maxsize;i++)
    for(j=0;j<maxsize;j++)
        if(mat1[i][j]==mat2[i][j]){
            if(*arraysize%3==0 && *arraysize!=0)
                ptr=(int*)realloc(ptr,sizeof(int)*(*arraysize+3));
            ptr[*arraysize]=i;
            ptr[*arraysize+1]=j;
            ptr[*arraysize+2]=mat1[i][j];
            *arraysize+=3;
        }
return ptr;
}

问题是我在函数的签名中声明了矩阵列。我正在寻找更通用的解决方案。 如果你想知道函数应该做什么是这样的: 它检查两个矩阵上的每个常见索引。如果value相等 - 将行,列和值添加到新数组并返回它。

1 个答案:

答案 0 :(得分:0)

使用可变长度数组作为函数参数(这是100%标准C99):

#include <stdio.h>

void print_matrix(size_t w, size_t h, int m[w][h])
{
    for (size_t i = 0; i < w; i++) {
        for (size_t j = 0; j < h; j++) {
            printf("%3d ", m[i][j]);
        }
        printf("\n");
    }
}

int main()
{
    int arr[2][3] = {
        { 1, 2, 3 },
        { 4, 5, 6 }
    };

    print_matrix(2, 3, arr);
    return 0;
}