#include<iostream>#include<fstream>#include<string>#include<vector>using namespace std;int main() {unsigned int i, j;string filename = "Test.txt";fstream fin;fin.open(filename.c_str(), ios::in);vector<string> v;string tmp;while (fin >> tmp){v.push_back(tmp);}for (i = 0; i < v.size(); i++) {for (j = 0; j < v.size(); j++) {int m = j - 1;if (v[i] == v[j]) v.erase(j-1,j);}}for (auto x : v)cout << x << endl;getchar();getchar();return 0;}
1 回答
慕工程0101907
TA贡献1887条经验 获得超5个赞
v.erase(j-1,j);
有两个错误
越界
用法错误
正确的用法为
vector<string>::iterator t = v.begin();//相当于取数组第一个元素
v.erase(t);//删除
- 1 回答
- 0 关注
- 149 浏览
添加回答
举报
0/150
提交
取消