gpt4 book ai didi

c++ - C 中的动态二维数组分配

转载 作者:搜寻专家 更新时间:2023-10-30 23:49:49 27 4
gpt4 key购买 nike

我应该如何在 C 中分配动态数组?目前我有一个名为 malloc2D 的函数,它看起来像这样:

void* malloc2D(size_t unitSize, uint firstCount, uint secondCount)
{
void** pointer = malloc(sizeof(id) * firstCount);
for (int i =0; i < firstCount; i ++){
pointer[i] = malloc(unitSize * secondCount);
}
return pointer;
}

它工作正常,但有人告诉我,它对单独分配的内存造成很大压力。执行此操作的最佳或最常规方法是什么?

最佳答案

您可以一次分配整个 block :

int ** foo;

foo = malloc(sizeof(int*) * firstCount);
foo[0] = malloc(sizeof(int) * firstCount * secondCount);
for (int i=1; i<firstCount; i++)
{
foo[i] = foo[0] + i * secondCount;
}

关于c++ - C 中的动态二维数组分配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3526301/

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