gpt4 book ai didi

C - 将元素数组转换为二维矩阵

转载 作者:行者123 更新时间:2023-12-02 03:22:46 24 4
gpt4 key购买 nike

这可能是一个愚蠢的问题,但我想知道是否有一种有效的方法来做到这一点。

情况:

int* array = malloc(n * m * sizeof(int));
//want to convert array into M[n][m]

我现在在做什么:

int** M = malloc(n * sizeof(int*));
for(int i = 0; i < n; i++, array += m)
M[i] = array;

我认为转换不应该这么复杂。 C 有没有简单的语法?我可以声明一个 extern M[n][m] 然后将其地址设置为数组吗?

(为简单起见,省略了示例中的错误处理和内存管理。只需将其视为某个函数的一部分即可。)

最佳答案

之后:

int* array = malloc(n * m * sizeof(int));

你可以这样做:

int (*M)[m] = (int(*)[m])array;

然后使用M[1][2]为例。

你一开始也可以这样做:

int (*M)[m] = malloc( n * sizeof *M );

关于C - 将元素数组转换为二维矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54282732/

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