二维数组分配后的分割错误



我有这个代码:

#include <iostream>
#include <math.h>
int main()
{
int n,m,k,hours;
std::cin >> n >> m >> k;
hours = std::ceil(n * k / (float)m);
int* checkers = new int[m];
int** check = new int*[hours];
for(int i(0); i < hours; i++)
check[i] = new int[n];
for(int i(0); i < n; i++)
checkers[i] = (i + 1) % m;
std::cout << check[0][0];
return 0;
}

对于像20 4 1这样的特定输入数据,当我尝试打印check[0]时,它会返回Segmentation Fault。但如果我这样替换int* checkers = new int[m];

#include <iostream>
#include <math.h>
int main()
{
int n,m,k,hours;
std::cin >> n >> m >> k;
hours = std::ceil(n * k / (float)m);
int** check = new int*[hours];
for(int i(0); i < hours; i++)
check[i] = new int[n];
int* checkers = new int[m];
for(int i(0); i < n; i++)
checkers[i] = (i + 1) % m;
std::cout << check[0][0];
return 0;
}

它将返回malloc.c:2394: sysmalloc: Assertion `(old_top == initial_top (av) && old_size == 0) || ((unsigned long) (old_size) >= MINSIZE && prev_inuse (old_top) && ((unsigned long) old_end & (pagesize - 1)) == 0)' failed.

我该怎么修?

第页。S.有了输入,例如3 1 1,一切都很好。

您在使用n元素时为checkers分配了m元素。

要分配和使用的元素数量应该匹配(根据您想要做的事情,分配n元素或使用m元素(。

还要注意,new int[n]的内容不会自动初始化,因此不能依赖check[0][0]的值。

相关内容

  • 没有找到相关文章

最新更新