私は宿題で立ち往生しています。ファイルからテキストを読み取り、各単語をメモリに割り当ててから、ポインタを使用してそれをに送信する必要がありvector<string*>
ます。私のプログラムは、単に追加するのではなく、ファイルからの新しい単語でベクトルを上書きし続けます。なぜこれが起こっているのか理解できません。
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
using namespace std;
void WordFunctions(string *pstr, vector<string*> &words)
{
words.push_back(pstr);
}
int main(){
ifstream file;
vector<string*> a;
string word;
int w =0;
file.open("word.txt");
while (!file.eof())
{
w++;
file >> word;
WordFunctions(&word, a);
}
file.close();
for (int i=0;i<10;i++){
cout<<(*a[i])<<" ";
delete a[i];
}
system ("pause");
}