gpt4 book ai didi

c++ - 调整 2D 动态分配的大小

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

你能帮我更改动态分配的二维数组的大小吗?我需要将当前数组大小更改为所需大小的函数。例如,我发送我的代码。谢谢

    int main()
{
//create array col x row
int **array = new int*[col];
for (int i = 0; i < col; i++)
{
array [i] = new int[row];
}

//add numbers to array
for (int i = 0; i < col; i++)
{
for (int j = 0; j < row; j++)
{
pole[i][j] = i*j;
}
}

/*
call function for change size of matrix ...
for example row to rov+5 and col to col+1 without loss of data
*/

//free memory
for (int i = 0; i < col; i++)
{
delete[] pole[i];
}
delete pole;
}

void resize(int ** & arr)
{
//code
}

最佳答案

我不确定你想在这里完成什么。也许最简单的方法是在删除旧矩阵之前将其复制到更大的矩阵中。如果你想真正重新分配内存,并避免 c++ 提供的更复杂的结构,你可以使用 #include<cstdlib> ,和realloc()所有需要的行和列。但这不被认为是 C++ 风格。

更多信息:http://www.cplusplus.com/reference/cstdlib/realloc/

关于c++ - 调整 2D 动态分配的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27436071/

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