C++erase函数的使用 10
#include<iostream>#include<fstream>#include<string>#include<vector>usingnamespacestd;...
#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;
}
运行时报错说iterator+offset out range 展开
#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;
}
运行时报错说iterator+offset out range 展开
1个回答
2018-05-23
展开全部
v.erase(j-1,j);
有两个错误
越界
用法错误
正确的用法为
vector<string>::iterator t = v.begin();//相当于取数组第一个元素
v.erase(t);//删除
追问
要删去第j个元素应该怎么写呀😳
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询