#include<iostream>
#include <intrin.h>
using namespace std;
unsigned __int64 TimeValue=0;
unsigned __int64 rdtsc(void)
{
return __rdtsc();
};
void time_start() { TimeValue=rdtsc(); }
long long time_stop() {
return (rdtsc()-TimeValue);
}
int main()
{
long x[262144],i,k,r;
int j;
x[0] = 0;
for (i=1; i<262144; i++)
{
long r = rand()%i;
x[i] = x[r];
x[r] = i;
}
time_start();
for (j=0; j<1000; j++)
for (k=0, i=0; i<262144; i++)
k = x[k];
cout<<time_stop()/1000/262144;
}
In dem Programm muss ich eine Array-Größe von 1 Megabyte erstellen. Beim Debuggen eines Programms in der Zeile long x [262144]
tritt ein Fehler auf: Eine nicht behandelte Ausnahme "0x00ff1997" in der "dgdxgdrfy.exe": 0xC00000FD: Stapelüberlauf. Warum ist das und wie kann ich es reparieren?Array der Größe 1 MB
versuchen Sie, Ihr Array als global zu deklarieren. –