主要介绍c++常用函数
排序函数
我们总结一下你的排序选择:
● 如果你需要在vector、string、deque或数组上进行完全排序,你可以使用sort或stable_sort。
● 如果你有一个vector、string、deque或数组,你只需要排序前n个元素,应该用partial_sort。
● 如果你有一个vector、string、deque或数组,你需要鉴别出第n个元素或你需要鉴别出最前的n个元素,而不用知道它们的顺序,nth_element是你应该注意和调用的。
● 如果你需要把标准序列容器的元素或数组分隔为满足和不满足某个标准,你大概就要找partition或stable_partition。
● 如果你的数据是在list中,你可以直接使用partition和stable_partition,你可以使用list的sort来代替sort和stable_sort。如果你需要partial_sort或nth_element提供的效果,你就必须间接完成这个任务,但正如我在上面勾画的,会有很多选择。
sort
partial_sort
1 | // partial_sort example |
结果:
Possible output:
myvector contains: 1 2 3 4 5 9 8 7 6
stable_sort
Sorts the elements in the range [first,last) into ascending order, like sort, but stable_sort preserves the relative order of the elements with equivalent values.
1 | // stable_sort example |
结果:
using default comparison: 1.32 1.41 1.62 1.73 2.58 2.72 3.14 4.67
using ‘compare_as_ints’ : 1.41 1.73 1.32 1.62 2.72 2.58 3.14 4.67
可以看出stable_sort保证了元素的相对顺序(在原来的数据中1.41在1.73的前面)
nth_element
1 | // nth_element example |
partion
1 | // partition algorithm example |
Possible output:
odd elements: 1 9 3 7 5
even elements: 6 4 8 2
去重函数
unique
unique的作用是从输入序列中“删除”所有相邻的重复元素。
在STL中unique函数是一个去重函数,unique的功能是去除相邻的重复元素(只保留一个),其实它并不真正把重复的元素删除,是把重复的元素移到后面去了,然后依然保存到了原数组中,然后 返回去重后最后一个元素的地址,因为unique去除的是相邻的重复元素,所以一般用之前都会要排一下序。
从无序数组中删除重复的元素1
2
3
4
5
6
7
8
9
10 1 // sort words alphabetically so we can find the duplicates
2 sort(words.begin(), words.end());
3 /* eliminate duplicate words:
4 * unique reorders words so that each word appears once in the
5 * front portion of words and returns an iterator one past the
6 unique range;
7 * erase uses a vector operation to remove the nonunique elements
8 */
9 vector<string>::iterator end_unique = unique(words.begin(), words.end());
10 words.erase(end_unique, words.end());
unique_copy
接受第三个迭代器实参,用于指定复制不重复元素的目标序列。
unique_copy根据字面意思就是去除重复元素再执行copy运算。
1 | //使用unique_copy算法 |