C ++程序在Linux上运行得很好但不能在Windows上运行

时间:2017-12-17 13:26:26

标签: c++ linux windows g++ codeblocks

我有这个代码在Ubuntu 16.04.3 LTS上完美运行。但是当我通过Windows上的Codeblock构建并运行它时。它只是CRASH。我不知道我错了什么,我怎么能解决这个问题。我写的很多C ++程序可以在Linux上运行但在Windows上运行CRASH。

Crashed Pricture

非常感谢你们的帮助!

ExecStartPost

我使用此命令在Ubuntu终端上编译:

#include <iostream>

using namespace std;

int d = 1;

void topRight(int [999][999], int, int, int, int);
void bottomLeft(int [999][999], int, int, int, int);

void topRight(int a[999][999], int x1, int y1, int x2, int y2) {
  for (int i=x1;i<=x2;i++) a[y1][i]=d++;
  for (int j=y1+1;j<=y2;j++) a[j][x2]=d++;
  if (x2-x1>0 && y2-y1>0){
    y1++;
    x2--;
    bottomLeft(a,x1,y1,x2,y2);
  }
}

void bottomLeft(int a[999][999], int x1, int y1, int x2, int y2) {
    for (int i=x2;i>=x1;i--) a[y2][i]=d++;
    for (int j=y2-1;j>=y1;j--) a[j][x1]=d++;
    if (x2-x1>0 && y2-y1>0) {
        x1++;
    y2--;
        topRight(a,x1,y1,x2,y2);
    }
}

int main(void){
  int a[999][999],m,n,i,j;
  cout << "Insert n: ";
  cin >> n;
  cout << "Insert m: ";
  cin >> m;
  topRight(a,0,0,n-1,m-1);
  cout << "\nA spiral-shaped two-dimensional array whith size " << m << " x " << n << " is: \n\n";
  for(i=0;i<m;i++){
    for(j=0;j<n;j++){
      cout << a[i][j] << "  ";
    }
    cout << "\n";
  }
}

用这个命令运行它:

g++ program.cpp -o program

1 个答案:

答案 0 :(得分:3)

声明999x999矩阵时,使用简单的数学运算:

999*999 = 998001

整数在内存中保存4个字节,所以

998001*4 = 3992004

几乎等于4 * 10 ^ 6字节。当你在main函数中声明一个变量时,它会尝试从堆栈中获取内存。在堆栈中,你不能给这样的记忆。这就是为什么你得到stackoverflow错误。

尝试减小矩阵的大小或将此变量声明为全局变量。但全球变量也有限制。