c - 在C中制作二维数组的最佳方法是什么

标签 c multidimensional-array declaration definition variable-length-array

我想用 C 语言创建一个二维数组。

我知道一种方法可以做到这样。

#include <stdlib.h>

void    my_func(int **arr)
{
        printf("test2: %d\n", arr[0][1]);
}

int     main(void)
{
        const int row = 3;
        const int col = 4;

        int **arr = (int **)malloc(sizeof(int *) * 3);
        arr[0] = (int *)malloc(sizeof(int) * 4);
        arr[1] = (int *)malloc(sizeof(int) * 4);
        arr[2] = (int *)malloc(sizeof(int) * 4);

        arr[0][0] = 1;
        arr[0][1] = 2;
        arr[0][2] = 3;
        arr[0][3] = 4;
        arr[1][0] = 3;
        arr[1][1] = 4;
        arr[1][2] = 5;
        arr[1][3] = 6;
        arr[2][0] = 5;
        arr[2][1] = 6;
        arr[2][2] = 7;
        arr[2][3] = 8;

        printf("test1: %d\n", arr[0][1]);

        my_func(arr);

}

在这种情况下,数组可以作为参数传递给函数。 但它并不那么漂亮。 如果数组有很多值(例如 20*20),我需要逐行输入每个值。

所以我搜索了一下,找到了一种制作这样的数组的方法。

#include <stdio.h>

void    my_func(int **arr)
{
        printf("test2: %d", arr[0][1]);
}

int     main(void)
{
        const int row = 3;
        const int col = 4;

        int arr[row][col] = {
                {1,2,3,4},
                {3,4,5,6},
                {5,6,7,8}
        };
        printf("test1: %d", arr[0][1]);

        my_func(arr);
}

很简洁,不会让我疲惫不堪。 但是当数组传递给函数时出现了问题。 编译时出现如下警告

test_2D_array.c:20:11: warning: incompatible pointer types passing 'int [3][4]' to
      parameter of type 'int **' [-Wincompatible-pointer-types]
                my_func(arr);
                        ^~~
test_2D_array.c:3:20: note: passing argument to parameter 'arr' here
void    my_func(int **arr)
                      ^
1 warning generated.

甚至该函数也无法访问数组参数。存在段错误。

所以我想知道制作数组的最佳方法,该数组可以作为参数传递给任何函数,并且比我的第一个代码更省力。

感谢您的阅读。

最佳答案

这个

int **arr = (int **)malloc(sizeof(int *) * 3);

不是二维数组的声明或分配

这里是一个元素类型为 int * 的一维数组被 build 。然后一维数组的每个元素依次指向一个分配的一维数组,元素类型为 int .

这个二维数组的声明

    const int row = 3;
    const int col = 4;

    int arr[row][col] = {
            {1,2,3,4},
            {3,4,5,6},
            {5,6,7,8}
    };

不正确。可变长度数组(并且您声明了可变长度数组)可能不会在声明中初始化。

你可以这样写

    enum { row = 3, col = 4 };

    int arr[row][col] = {
            {1,2,3,4},
            {3,4,5,6},
            {5,6,7,8}
    };

当这样的数组传递给函数时,它会隐式转换为指向 int ( * )[col] 类型的第一个元素的指针。 .

您可以通过以下方式将其传递给具有可变长度数组类型参数的函数

void    my_func( size_t row, size_t col, int arr[row][col] )
{
        printf("test2: %d", arr[0][1]);
}

或者是否将枚举的定义放在函数声明之前

    enum { row = 3, col = 4 };

那么该函数也可以这样声明

void    my_func( int arr[][col], size_t row )
{
        printf("test2: %d", arr[0][1]);
}

这是一个演示程序,展示了三种不同的方法。第一个是使用数组大小​​的编译时常量定义数组时。第二个是创建可变长度数组时。第三个是动态分配指向一维数组的指针的一维数组。

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

enum { row = 3, col = 4 };

void output1( int a[][col], size_t row )
{
    for ( size_t i = 0; i < row; i++ )
    {
        for ( size_t j = 0; j < col; j++ )
        {
            printf( "%d ", a[i][j] );
        }
        putchar( '\n' );
    }
}

void output2( size_t row, size_t col, int a[row][col] )
{
    for ( size_t i = 0; i < row; i++ )
    {
        for ( size_t j = 0; j < col; j++ )
        {
            printf( "%d ", a[i][j] );
        }
        putchar( '\n' );
    }
}

void output3( int **a, size_t row, size_t col )
{
    for ( size_t i = 0; i < row; i++ )
    {
        for ( size_t j = 0; j < col; j++ )
        {
            printf( "%d ", a[i][j] );
        }
        putchar( '\n' );
    }
}


int     main(void)
{
        int arr1[row][col] = 
        {
                {1,2,3,4},
                {3,4,5,6},
                {5,6,7,8}
        };

        output1( arr1, row );
        putchar( '\n' );

        const size_t row = 3, col = 4;

        int arr2[row][col];

        memcpy( arr2, arr1, row * col * sizeof( int ) );

        output2( row, col, arr2 );
        putchar( '\n' );

        int **arr3 = malloc( row * sizeof( int * ) );

        for ( size_t i = 0; i < row; i++ )
        {
            arr3[i] = malloc( col * sizeof( int ) );
            memcpy( arr3[i], arr1[i], col * sizeof( int ) );
        }

        output3( arr3, row, col );
        putchar( '\n' );

        for ( size_t i = 0; i < row; i++ )
        {
            free( arr3[i] );
        }

        free( arr3 );
} 

程序输出为

1 2 3 4 
3 4 5 6 
5 6 7 8 

1 2 3 4 
3 4 5 6 
5 6 7 8 

1 2 3 4 
3 4 5 6 
5 6 7 8 

注意函数output2可以与数组 arr1 一起使用与数组 arr2 的使用方式相同.

关于c - 在C中制作二维数组的最佳方法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61464607/

相关文章:

c - 运行分而治之算法后打印数组中的最大子数组值

c++ - 分段故障打印文件特征

class - 如何在 UML : associations vs attributes 中对二维阵列板建模

c++ - 未知大小的 Tilemap 数组

python - 交换多维 Python 列表的轴

c - 如何在 c 套接字中使用 select 等待特定响应而不忽略其他响应?

c - 为什么我的 strcmp() 失败了?

复杂声明

c++ - C++ 中的声明符

node.js - 使用 Typescript 1.5 构建 Node 包并生成声明文件