これを含めずに書いたところ、正常に実行されました。srand
とはrandom_shuffle
std ライブラリにありますか? 奇妙ですね。
リンクhereおよびhereは、アルゴリズムライブラリにあると言います。
#include <array>
#include <time.h>
#include <vector>
using namespace std;
int main()
{
vector<int> myvector;
srand((unsigned)time(NULL));
for (int i=0; i<10; ++i)
{myvector.push_back(i);}
random_shuffle ( myvector.begin(), myvector.end() );
}