Limit on Integer 2-dimensional arrays?
I was trying out a 2-dimensional integer array on a UNIX box. I hit up a 'Segmentation Fault' on trying to run it.
#include <iostream>
#include <cstdlib>
using namespace std;
int main() {
int matrix[2000][2000];
int i, j;
srand ( 1 );
for (i=0; i<2000; i++) {
for (j=0; j<2000; j++) {
matrix[i][j] = rand() %1000;
}
}
return 0;
}
But If I use an array of 10x10, everything seems to work properly. I was thinking of this : 'Did I hit up on the limit of the integer array?'
Do I need to use some other datatype? Uh, double/long/something of this sort ? I need to replicate a 2000x2000 matrix...
Related Article: 2-dimensional arrays
is a C++ discussion thread by fugnut that has 1 reply and was last updated 3 years ago.
halluc1nati0n
Newbie Poster
24 posts since Nov 2009
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0
EDIT:
It looks like the problems' not with the data-type, rather, it's with the way the random numbers are getting generated :)
NEW EDIT:
Turns out I was wrong. I'm thinking the datatype has overrun somehow when trying to simulate a 2000x2000 matrix.
halluc1nati0n
Newbie Poster
24 posts since Nov 2009
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0
I have seen this problem before of large arrays on stack.
Just declare it as a global.
thomas_naveen
Junior Poster
168 posts since Jan 2010
Reputation Points: 136
Solved Threads: 36
Skill Endorsements: 0
Looks like you may have blown your stack. Your compiler probably sets an initial stack size which your array size exceeds. You should check you compilers linker settings to look for stack size settings and experiment with these until you find a size which works.
mattjbond
Junior Poster
149 posts since Mar 2010
Reputation Points: 66
Solved Threads: 21
Skill Endorsements: 0
I have seen this problem before of large arrays on stack.
Just declare it as a global.
Looks like you may have blown your stack. Your compiler probably sets an initial stack size which your array size exceeds. You should check you compilers linker settings to look for stack size settings and experiment with these until you find a size which works.
Thanks for the view guys. I'll let you know my progress ;)
halluc1nati0n
Newbie Poster
24 posts since Nov 2009
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0
Thanks for the view guys. I'll let you know my progress ;)
nae woz. vote up useful info.
mattjbond
Junior Poster
149 posts since Mar 2010
Reputation Points: 66
Solved Threads: 21
Skill Endorsements: 0
Question Answered as of 3 Years Ago by
mattjbond
and
thomas_naveen Defined my array globally and it worked! :)
Kudos to ya guys!
halluc1nati0n
Newbie Poster
24 posts since Nov 2009
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0