gpt4 book ai didi

c - 任意长度的二维数组

转载 作者:行者123 更新时间:2023-11-30 14:23:24 27 4
gpt4 key购买 nike

int func(int arr[100][150], int rows, int columns);
int func(int arr[100][150], int rows, int columns)
{
//stuff here
}

这个功能有效。如果我想将 arr 大小分配给 arr[行][列],但不是始终为 100 和 150,该怎么办?如果我将它分配给 100 和 150,如果行和列较小,它可能会使用比应有的内存更多的内存?

int func(int arr[rows][columns], int rows, int columns);
int func(int arr[rows][columns], int rows, int columns)
{
//stuff here
}

int func(int arr[][], int rows, int columns);
int func(int arr[][], int rows, int columns)
{
//stuff here
}

不起作用。

最佳答案

首先传递尺寸:

int func(int rows, int columns, int arr[rows][columns])
{

}

(实际上,第一维可以省略,第一维之后的维度是需要计算地址的。)

关于c - 任意长度的二维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12899269/

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