当前位置:   article > 正文

run time error总结_runtimeerror: min(): expected reduction dim to be

runtimeerror: min(): expected reduction dim to be specified for input.numel(

运行时错误可能出现的原因:

常见出错的原因可能有以下几种:
1、数组开得太小了,导致访问到了不该访问的内存区域(数组越界)
2、发生除零错误
3、大数组定义在函数内,导致程序栈区耗尽
4、指针用错了,导致访问到不该访问的内存区域
5、还有可能是程序抛出了未接收的异常

实际出错代码:

#include <iostream>
#include <queue>
using namespace std;
struct point
{
	int x;
	int step;
};
queue<point>r;
int b[10005];
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

这里是数组开的太小,不符合题意。

#include <iostream>
#include <queue>
using namespace std;
struct point
{
	int x;
	int step;
};
queue<point>r;
int main()
{
	int b[1000000000];
	int n,m;
	scanf("%d %d",&n,&m);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

这里数组开的较大,但是放在了主函数里,这样也会报错,所以应将大数组设成全局变量。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/545987
推荐阅读
相关标签
  

闽ICP备14008679号