0

単純なクイックソート アルゴリズムを作成しようとしていますが、実行するたびに例外がスローされ、デバッグに問題があります。エラーには、「Final.exe の 0x00D01367 で未処理の例外: 0xC0000005: アクセス違反が場所 0x00000000 を書き込んでいます」と表示されます。使用できないので、代わりに使用するs[i] = value;必要がありますか? s.push_back(value);以前は前者を問題なく使用していたので、なぜエラーが発生するのかわかりません。

#include <iostream>
#include <vector>
#include <list>
#include <cassert>
using namespace std;

typedef unsigned int uint;


uint partition(uint low, uint high, vector<double> & s)
{
uint i; //first index for partitioning
uint j; //second index for partitioning
uint pivotpoint; //index of the partition
double pivotvalue; //value at the pivot
double swapvalue; //placeholder variable for the swap

pivotvalue = s[low];
j = low;
for (i = (low+1); i<=high; i++)
{
    if (s[i] < pivotvalue)
    {
        j++;
        swapvalue = s[i];
        s[i] = s[j];
        s[j] = swapvalue;
    }
}
pivotpoint = j;
swapvalue = s[low];
s[low] = s[pivotpoint];
s[pivotpoint] = swapvalue;

return pivotpoint;
}

void quicksort(uint low, uint high, vector<double> & s)
{
uint pivotpoint;

if(high>low)
{
    pivotpoint = partition(low,high,s);

    if(pivotpoint != 0)
    {
        quicksort(low, pivotpoint-1, s);
    }
    if(pivotpoint != high)
    {
        quicksort(pivotpoint+1,high, s);
    }
}
}

int main( /*int argc, char* argv[] */)
{/*
  if( argc != 2 )
  {
cout << "Usage: ./filename.txt" << endl;
cout << "filename.txt should be a file with the items to be sorted" << endl;
exit( 2 );
  }
  assert(argc == 2)
  {
  }
  */
vector<double> s;
s[0] = 1.1;
s[1] = 2.4;
s[2] = 7.1;
s[3] = 5.4;
s[4] = 2.5;
s[5] = 1.2;
s[6] = 0.9;
quicksort(0,s.size(),s);
for(uint i = 0; i<s.size(); i++)
{cout << s[i] << endl;}
return 0;
}
4

1 に答える 1

4

差し迫った問題の 1 つは、ベクトルの初期化に関するものです。

vector<double> s;
s[0] = 1.1;
s[1] = 2.4;
s[2] = 7.1;
s[3] = 5.4;
s[4] = 2.5;
s[5] = 1.2;
s[6] = 0.9;

ベクトルのサイズがゼロであるため、上記のs[]代入はすべて範囲外です。

最も簡単な修正は、おそらく最初の行を次のように変更することです。

vector<double> s(7); // set the size at construction

C++11 では、全体を次のように置き換えることができます。

vector<double> s{1.1, 2.4, 7.1, 5.4, 2.5, 1.2, 0.9};
于 2012-12-06T19:28:28.333 に答える