我正在尝试读取文件(input.txt)并逐个字符串地读取并仅将单词存储在向量(名称)中。这是一个更大项目的一部分,但是我被困在这里。该程序编译但是当我去运行它时我得到错误“分段错误”。我查看了我的程序,找不到错误。我相信它在我的 for 循环中以及我的措辞方式,但不知道如何更改它以使程序正确运行。如果你能给我一些关于如何改变它的建议,甚至告诉我出了什么问题,那么我知道从哪里开始,那就太好了!谢谢!
#include<iostream>
#include<string>
#include<vector>
#include<fstream>
#include<sstream>
using namespace std;
int main()
{
ifstream inf;
inf.open("input.txt");//open file for reading
string s;
getline(inf, s);
string word;
vector<int> index;// for later in my project ignore
vector<string> name;// store the words from the input file
while( !inf.eof())//while in the file
{
istringstream instr(s);//go line by line and read through the string
string word;
instr >> word;
for(int i=0;i<word.length(); i++) //go word by word in string checkin if word and if it is then parseing it to the vector name
{
if(!isalpha(word[i]))
name.push_back(word);
cout<<name[i]<<endl;
}
}
inf.close();
return 0;
}