一見問題のないコードにセグメンテーション違反があります。障害が発生している場所はわかっていますが、修正できないようです。
for(int i=0; i<position.size();i++)
{
ordered[position[i]-1]= name[i];
}
これは、コードが対応する番号を持つ名前のファイルを読み取り、名前を番号順にソートすることになっているという欠点です。参照用のコード全体は次のとおりです。
#include<iostream>
#include<string>
#include<vector>
#include<fstream>
#include<sstream>
#include<algorithm>
using namespace std;
void print_vector(vector<string> ordered){
for(int i = 0; i < ordered.size(); i++)
cout << ordered[i] << " ";
cout << endl;
}
int main()
{
ifstream inf;
inf.open("input2.txt");
string s;
string word;
vector<int> position;
vector<string> name;
vector<string> ordered;
string n;
int p;
while( !inf.eof())
{
getline(inf, s);
istringstream instr(s);
instr>>p;
instr>>n;
while(!instr.eof()){
position.push_back(p);
name.push_back(n);
instr>>p;
instr>>n;
}
}
for(int i=0; i<position.size();i++)
{
ordered[position[i]-1]= name[i];
}
print_vector(ordered);
inf.close();
return 0;
}