猿问

为什么第十次输出就成了空串了?不理解啊, 还有就是red,两个red成了一个了,这是怎么回事?

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
using namespace std;

void a(vector<string> &words);

int main()
{
string word[] = {"the","quick","red","fox","jumps","over","the","slow","red","turtle"};
vector<string> vec_str(begin(word),end(word));
a(vec_str);
/*for(auto i : vec_str)
{
cout<<i<<ends;
}*/
int ii = 1 ;
for(vector<string>::const_iterator i = vec_str.cbegin() ; i != vec_str.cend() ; ++i)
{
cout<<*i<<ends<<ii<<"次"<<endl;
++ii;
}

}

void a(vector<string> &words)
{
sort(words.begin(),words.end()) ;
auto end_unique = unique(words.begin(),words.end());
//words.erase(end_unique,words.end());
}








慕桂英546537
浏览 70回答 2
2回答

慕森卡

你定义的a函数的形参是1个对vector的引用,所以函数内对形参作的所有改动会影响到实参。sort(words.begin(),words.end()) ; 首先是对形参容器进行排序,根据首字母。auto end_unique = unique(words.begin(),words.end()); 执行unique函数后,容器中重复元素被放到了最后面。(不知道你知不知道unique算法的作用,这是1个泛型算法,返回1个迭代器,他对传入的元素进行排序,同时把重复的元素放到最后面,返回的迭代器指向的重复的第1个元素),那这样实参的容器就发生变化了,10个元素顺序是这样的:。。。。。前面7个就懒得打了,turtle,the,turtle,此时的end_unique执行the,因为这是第1个重复的元素。a函数调用结束,打印vector里面的元素,现在vector已经拍过序了,有效的迭代器范围就是指向the,所以打印的时候只打印到这,最后的turtle因为不在迭代器范围内,所以不打印出来,懂了吗?

HUH函数

一.unique函数类属性算法unique的作用是从输入序列中“删除”所有相邻的重复元素。该算法删除相邻的重复元素,然后重新排列输入范围内的元素,并且返回一个迭代器(容器的长度没变,只是元素顺序改变了),表示无重复的值范围得结束。// sort words alphabetically so we can find the duplicatessort(words.begin(), words.end());/* eliminate duplicate words:* unique reorders words so that each word appears once in the* front portion of words and returns an iterator one past theunique range;* erase uses a vector operation to remove the nonunique elements*/vector<string>::iterator end_unique = unique(words.begin(), words.end());words.erase(end_unique, words.end());在STL中unique函数是一个去重函数, unique的功能是去除相邻的重复元素(只保留一个),其实它并不真正把重复的元素删除,是把重复的元素移到后面去了,然后依然保存到了原数组中,然后 返回去重后最后一个元素的地址,因为unique去除的是相邻的重复元素,所以一般用之前都会要排一下序。&nbsp;&nbsp;若调用sort后,vector的对象的元素按次序排列如下:sort jumps over quick red red slow the the turtle注意,words的大小并没有改变,依然保存着10个元素;只是这些元素的顺序改变了。调用unique“删除”了相邻的重复值。给“删除”加上引号是因为unique实际上并没有删除任何元素,而是将无重复的元素复制到序列的前段,从而覆盖相邻的重复元素。unique返回的迭代器指向超出无重复的元素范围末端的下一个位置。注意:算法不直接修改容器的大小。如果需要添加或删除元素,则必须使用容器操作。example:#include <iostream>#include <cassert>#include <algorithm>#include <vector>#include <string>#include <iterator>using namespace std;int main(){//cout<<"Illustrating the generic unique algorithm."<<endl;const int N=11;int array1[N]={1,2,0,3,3,0,7,7,7,0,8};vector<int> vector1;for (int i=0;i<N;++i)vector1.push_back(array1[i]);vector<int>::iterator new_end;new_end=unique(vector1.begin(),vector1.end()); //"删除"相邻的重复元素assert(vector1.size()==N);vector1.erase(new_end,vector1.end()); //删除(真正的删除)重复的元素copy(vector1.begin(),vector1.end(),ostream_iterator<int>(cout," "));cout<<endl;return 0;}二、unique_copy函数算法标准库定义了一个名为unique_copy的函数,其操作类似于unique。唯一的区别在于:前者接受第三个迭代器实参,用于指定复制不重复元素的目标序列。unique_copy根据字面意思就是去除重复元素再执行copy运算。编写程序使用unique_copy将一个list对象中不重复的元素赋值到一个空的vector对象中。//使用unique_copy算法//将一个list对象中不重复的元素赋值到一个空的vector对象中#include<iostream>#include<list>#include<vector>#include<algorithm>using namespace std;int main(){int ia[7] = {5 , 2 , 2 , 2 , 100 , 5 , 2};list<int> ilst(ia , ia + 7);vector<int> ivec;//将list对象ilst中不重复的元素复制到空的vector对象ivec中//sort(ilst.begin() , ilst.end()); //不能用此种排序,ilst.sort(); //在进行复制之前要先排序unique_copy(ilst.begin() , ilst.end() , back_inserter(ivec));//输出vector容器cout<<"vector: "<<endl;for(vector<int>::iterator iter = ivec.begin() ; iter != ivec.end() ; ++iter)cout<<*iter<<" ";cout<<endl;return 0;}&nbsp;
随时随地看视频慕课网APP
我要回答