我有这个代码:
#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]
的值。