ACM竞赛常用STL(二)之STL--algorithm

<algorithm>无疑是STL 中最大的一个头文件,它是由一大堆模板函数组成的。
下面列举出<algorithm>中的模板函数:


adjacent_find / binary_search / copy / copy_backward / count
/ count_if / equal / equal_range / fill / fill_n / find /
find_end / find_first_of / find_if / for_each / generate /
generate_n / includes / inplace_merge / iter_swap /
lexicographical_compare / lower_bound / make_heap / max /
max_element / merge / min / min_element / mismatch /
next_permutation / nth_element / partial_sort /
partial_sort_copy / partition / pop_heap / prev_permutation
/ push_heap / random_shuffle / remove / remove_copy /
remove_copy_if / remove_if / replace / replace_copy /
replace_copy_if / replace_if / reverse / reverse_copy /
rotate / rotate_copy / search / search_n / set_difference /
set_intersection / set_symmetric_difference / set_union /
sort / sort_heap / stable_partition / stable_sort / swap /
swap_ranges / transform / unique / unique_copy / upper_bound


如果详细叙述每一个模板函数的使用,足够写一本书的了。还是来看几个简单
的示例程序吧。
示例程序之一,for_each 遍历容器:

 1 #include <iostream>
 2 #include <vector>
 3 #include <algorithm>
 4 using namespace std;
 5 int Visit(int v) // 遍历算子函数
 6 {
 7     cout << v << " ";
 8     return 1;
 9 }
10 class MultInt // 定义遍历算子类
11 {
12     private:
13     int factor;
14     public:
15     MultInt(int f) : factor(f){}
16     void operator()(int &elem) const
17     {
18         elem *= factor;
19     }
20 };
21 int main()
22 {
23     vector<int> L;
24     for (int i=0; i<10; i++) 
25         L.push_back(i);
26     for_each(L.begin(), L.end(), Visit);
27         cout << endl;
28     for_each(L.begin(), L.end(), MultInt(2));
29     for_each(L.begin(), L.end(), Visit);
30     cout << endl;
31     return 0;
32 }

 

程序的输出结果为:
0 1 2 3 4 5 6 7 8 9
0 2 4 6 8 10 12 14 16 18
示例程序之二,min_element/max_element,找出容器中的最小/最大值:

 1 using namespace std;
 2 int main()
 3 {
 4     vector<int> L;
 5     for (int i=0; i<10; i++) 
 6         L.push_back(i);
 7     vector<int>::iterator min_it = min_element(L.begin(),L.end());
 8     vector<int>::iterator max_it = max_element(L.begin(),L.end());
 9     cout << "Min is " << *min_it << endl;
10     cout << "Max is " << *max_it << endl;
11     return 1;
12 }

 

程序的输出结果为:
Min is 0
Max is 9
示例程序之三,sort 对容器进行排序:

 1 #include <iostream>
 2 #include <vector>
 3 #include <algorithm>
 4 
 5 #include <iostream>
 6 #include <vector>
 7 #include <algorithm>
 8 using namespace std;
 9 void Print(vector<int> &L)
10 {
11     for (vector<int>::iterator it=L.begin(); it!=L.end();it++)
12     cout << *it << " ";
13     cout << endl;
14 }
15 int main()
16 {
17     vector<int> L;
18     for (int i=0; i<5; i++) 
19         L.push_back(i);
20     for (int i=9; i>=5; i--) 
21         L.push_back(i);
22     Print(L);
23     sort(L.begin(), L.end());
24     Print(L);
25     sort(L.begin(), L.end(), greater<int>()); // 按降序排序
26     Print(L);
27     return 0;
28 }

 

程序的输出结果为:
0 1 2 3 4 9 8 7 6 5
0 1 2 3 4 5 6 7 8 9
9 8 7 6 5 4 3 2 1 0
示例程序之四,copy 在容器间复制元素:

 1 #include <vector>
 2 #include <algorithm>
 3 #include <iostream>
 4 using namespace std;
 5 int main()
 6 {
 7     // 先初始化两个向量v1 和v2
 8     vector <int> v1, v2;
 9     for (int i=0; i<=5; i++) 
10         v1.push_back(10*i);
11     for (int i=0; i<=10; i++) 
12         v2.push_back(3*i);
13     cout << "v1 = ( " ;
14     for (vector <int>::iterator it=v1.begin(); it!=v1.end();it++)
15         cout << *it << " ";
16     cout << ")" << endl;
17     cout << "v2 = ( " ;
18     for (vector <int>::iterator it=v2.begin(); it!=v2.end();it++)
19         cout << *it << " ";
20     cout << ")" << endl;
21     // 将v1 的前三个元素复制到v2 的中间
22     copy(v1.begin(), v1.begin()+3, v2.begin()+4);
23     cout << "v2 with v1 insert = ( " ;
24     for (vector <int>::iterator it=v2.begin(); it!=v2.end();it++)
25         cout << *it << " ";
26     cout << ")" << endl;
27     // 在v2 内部进行复制,注意参数2 表示结束位置,结束位置不参与复制
28     copy(v2.begin()+4, v2.begin()+7, v2.begin()+2);
29     cout << "v2 with shifted insert = ( " ;
30     for (vector <int>::iterator it=v2.begin(); it!=v2.end();it++)
31     cout << *it << " ";
32     cout << ")" << endl;
33     return 1;
34 }

 

程序的输出结果为:
v1 = ( 0 10 20 30 40 50 )
v2 = ( 0 3 6 9 12 15 18 21 24 27 30 )
v2 with v1 insert = ( 0 3 6 9 0 10 20 21 24 27 30 )
v2 with shifted insert = ( 0 3 0 10 20 10 20 21 24 27 30 )
STL in ACM
容器(container):
迭代器(iterator): 指针
内部实现: 数组 // 就是没有固定大小的数组,vector 直接翻译是向量vector // T 就是数据类型,Alloc 是关于内存的一个什么东西,一般是使用默认参数。
支持操作:

 1 begin(), //取首个元素,返回一个iterator
 2 end(), //取末尾(最后一个元素的下一个存储空间的地址)
 3 size(), //就是数组大小的意思
 4 clear(), //清空
 5 empty(), //判断vector 是否为空
 6 [ ] //很神奇的东东,可以和数组一样操作
 7 //举例: vector a; //定义了一个vector
 8 //然后我们就可以用a[i]来直接访问a 中的第i + 1 个元素!和数组的下标一模一样!
 9 push_back(), pop_back() //从末尾插入或弹出
10 insert() O(N) //插入元素,O(n)的复杂度
11 erase() O(N) //删除某个元素,O(n)的复杂度

 

可以用于数组大小不定且空间紧张的情况
Iterator 用法举例:

 1 int main()
 2 {
 3     int n,i;
 4     vector vi; //类似于我们定义一个数组,同 int vi[1000]; 但vector的大小是自动调整的
 5     vector ::iterator itr; //两个冒号
 6     while (scanf("%d",&n) != EOF)
 7         vi.push_back(n);
 8     for (i = 0 ; i < vi.size() ; i++) 
 9         printf("%d\n",vi[i]);
10     for (itr = vi.begin() ; itr != vi.end() ; itr++)
11         printf("%d\n",*itr);
12     return 0;
13 }

类似:双端队列,两头都支持进出
支持push_front()和pop_front()

  1 是的精简版:) //栈,只支持从末尾进出
  2 支持push(), pop(), top()
  3 是的精简版 //单端队列,就是我们平时所说的队列,一头进,另一头出
  4 支持push(), pop(), front(), back()
  5 内部实现: 双向链表 //作用和vector 差不多,但内部是用链表实现
  6 list
  7 支持操作:
  8 begin(), end(), size(), clear(), empty()
  9 push_back(), pop_back() //从末尾插入或删除元素
 10 push_front(), pop_front()
 11 insert() O(1) //链表实现,所以插入和删除的复杂度的O(1)
 12 erase() O(1)
 13 sort() O(nlogn),不同于中的sort
 14 //不支持[ ]操作!
 15 内部实现: 红黑树 //Red-Black Tree,一种平衡的二叉排序树
 16 set //又是一个Compare 函数,类似于qsort 函数里的那个Compare 函数,
 17 作为红黑树在内部实现的比较方式
 18 insert() O(logn)
 19 erase() O(logn)
 20 find() O(logn) 找不到返回a.end()
 21 lower_bound() O(logn) 查找第一个不小于k 的元素
 22 upper_bound() O(logn) 查找第一个大于k 的元素
 23 equal_range() O(logn) 返回pair
 24 42
 25 允许重复元素的
 26 的用法及Compare 函数示例:
 27 struct SS {int x,y;};
 28 struct ltstr {
 29 bool operator() (SS a, SS b)
 30 {return a.x < b.x;} //注意,按C 语言习惯,double 型要写成这样:
 31 return a.x < b.x ? 1 : 0;
 32 };
 33 int main() {
 34 set st;
 35  36 }
 37 内部实现: pair 组成的红黑树 //map 中文意思:映射!!
 38 map //就是很多pair 组成一个红黑树
 39 insert() O(logn)
 40 erase() O(logn)
 41 find() O(logn) 找不到返回a.end()
 42 lower_bound() O(logn) 查找第一个不小于k 的元素
 43 upper_bound() O(logn) 查找第一个大于k 的元素
 44 equal_range() O(logn) 返回pair
 45 [key]运算符 O(logn) *** //这个..太猛了,怎么说呢,数组有一个下标,如a[i],这里i 是int 型的。数组可以认为是从int 印射到另一个类型的印射,而map 是一个任意的印射,所以i 可以是任何类型的!允许重复元素, 没有[]运算符
 46 内部实现: 堆 //优先队列,听RoBa 讲得,似乎知道原理了,但不明白干什么用的
 47 priority_queue
 48 支持操作:
 49 push() O(n)
 50 pop() O(n)
 51 top() O(1)
 52 See also: push_heap(), pop_heap() … in
 53 用法举例:
 54 priority_queue maxheap; //int 最大堆
 55 struct ltstr { //又是这么个Compare 函数,重载运算符???不明白为什么要这么写...反正这个Compare 函数对我来说是相当之神奇。RoBa
 56 说了,照着这么写就是了。
 57 bool operator()(int a,int b)
 58 {return a > b;}
 59 };
 60 priority_queue <INT,VECTOR,ltstr> minheap; //int 最小堆
 61 1.sort()
 62 void sort(RandomAccessIterator first, RandomAccessIterator
 63 last);
 64 void sort(RandomAccessIterator first, RandomAccessIterator
 65 last, StrictWeakOrdering comp);
 66 区间[first,last)
 67 Quicksort,复杂度O(nlogn)
 68 (n=last-first,平均情况和最坏情况)
 69 用法举例:
 70 1.从小到大排序(int, double, char, string, etc)
 71 const int N = 5;
 72 int main()
 73 {
 74 int a[N] = {4,3,2,6,1};
 75 string str[N] = {“TJU”,”ACM”,”ICPC”,”abc”,”kkkkk”};
 76 sort(a,a+N);
 77 sort(str,str+N);
 78 return 0;
 79 }
 80 2.从大到小排序(需要自己写comp 函数)
 81 const int N = 5;
 82 int cmp(int a,int b) 
 83 {
 84     return a > b;
 85 }
 86 int main()
 87 {
 88     int a[N] = {4,3,2,6,1};
 89     sort(a,a+N,cmp);    
 90     return 0;
 91 }
 92 3. 对结构体排序
 93 struct SS {int first,second;};
 94 int cmp(SS a,SS b) 
 95 {
 96     if (a.first != b.first) 
 97         return a.first < b.first;
 98     return a.second < b.second;
 99 }
100 v.s. qsort() in C (平均情况O(nlogn),最坏情况
101 O(n^2)) //qsort 中的cmp 函数写起来就麻烦多了!
102 int cmp(const void *a,const void *b) {
103 if (((SS*)a)->first != ((SS*)b)->first)
104 return ((SS*)a)->first – ((SS*)b)->first;
105 return ((SS*)a)->second – ((SS*)b)->second;
106 }
107 qsort(array,n,sizeof(array[0]),cmp);
108 sort()系列:
109 stable_sort(first,last,cmp); //稳定排序
110 partial_sort(first,middle,last,cmp);//部分排序
111 将前(middle-first)个元素放在[first,middle)中,其余元素位置不定
112 e.g.
113 int A[12] = {7, 2, 6, 11, 9, 3, 12, 10, 8, 4, 1, 5};
114 partial_sort(A, A + 5, A + 12);
115 // 结果是 "1 2 3 4 5 11 12 10 9 8 7 6".
116 Detail: Heapsort ,
117 O((last-first)*log(middle-first))
118 sort()系列:
119 partial_sort_copy(first, last, result_first, result_last,
120 cmp);
121 //输入到另一个容器,不破坏原有序列
122 bool is_sorted(first, last, cmp);
123 //判断是否已经有序
124 nth_element(first, nth, last, cmp);
125 //使[first,nth)的元素不大于[nth,last), O(N)
126 e.g. input: 7, 2, 6, 11, 9, 3, 12, 10, 8, 4, 1, 5
127 nth_element(A,A+6,A+12);
128 Output: 5 2 6 1 4 3 7 8 9 10 11 12
129 2. binary_search()
130 bool binary_search(ForwardIterator first, ForwardIterator
131 last, const LessThanComparable& value);
132 bool binary_search(ForwardIterator first, ForwardIterator
133 last, const T& value, StrictWeakOrdering comp);
134 在[first,last)中查找value,如果找到返回Ture,否则返回False
135 二分检索,复杂度O(log(last-first))
136 v.s. bsearch() in C
137 Binary_search()系列
138 itr upper_bound(first, last, value, cmp);
139 //itr 指向大于value 的第一个值(或容器末尾)
140 itr lower_bound(first, last, value, cmp);
141 //itr 指向不小于valude 的第一个值(或容器末尾)
142 pair equal_range(first, last, value, cmp);
143 //找出等于value 的值的范围 O(2*log(last – first))
144 int A[N] = {1,2,3,3,3,5,8}
145 *upper_bound(A,A+N,3) == 5
146 *lower_bound(A,A+N,3) == 3
147 make_heap(first,last,cmp) O(n)
148 push_heap(first,last,cmp) O(logn)
149 pop_heap(first,last,cmp) O(logn)
150 is_heap(first,last,cmp) O(n)
151 e.g:
152 vector vi;
153 while (scanf(“%d”,&n) != EOF) 
154 {
155     vi.push_back(n);
156     push_heap(vi.begin(),vi.end());
157 }
158 Others interesting:
159 next_permutation(first, last, cmp)
160 prev_permutation(first, last, cmp)
161 //both O(N)
162 min(a,b);
163 max(a,b);
164 min_element(first, last, cmp);
165 max_element(first, last, cmp);
166 Others interesting:
167 fill(first, last, value)
168 reverse(first, last)
169 rotate(first,middle,last);
170 itr unique(first, last);
171 //返回指针指向合并后的末尾处
172 random_shuffle(first, last, rand)
173 //头文件
174 #include <vector>
175 #include <list>
176 #include <map>
177 #include <set>
178 #include <deque>
179 #include <stack>
180 #include <bitset>
181 #include <algorithm>
182 #include <functional>
183 #include <numeric>
184 #include <utility>
185 #include <sstream>
186 #include <iostream>
187 #include <iomanip>
188 #include <cstdio>
189 #include <cmath>
190 #include <cstdlib>
191 #include <ctime>
192 using namespace std;

 

转载于:https://www.cnblogs.com/catdrivedragon/p/3971516.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/575225.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C语言程序设计现代方法1,2,3章

1&#xff1a;浮点型&#xff08;float&#xff09;运算比int慢&#xff0c;并且可能存在舍入误差 如float存储0.1&#xff0c;以后使用可能会变成0.099999999987 2&#xff1a;宏定义只用大写&#xff0c;这是大多数C程序猿遵循的规范&#xff01; C语言区分大小写&#xff0c…

python全栈要学什么_python全栈要学什么 python全栈学习路线

IT行业&#xff0c;技术要比学历、年龄、从业经验更为重要&#xff0c;技术水平直接决定就业薪资&#xff0c;想要学好python&#xff0c;首先要先了解精通Python语言基础、Python web开发、Python爬虫、Python数据分析这四大方面。 全栈即指的是全栈工程师&#xff0c;指掌握多…

初识java中数组、数组在内存中、越界异常、空指针异常

数组&#xff1a; 当存储多个数据时&#xff0c;此时可能会使用多个变量&#xff0c;这样不断声明变量会很麻烦&#xff0c;而这些变量都有相似的特性&#xff0c;因此我们可以将它们存放到一个容器中&#xff0c;统一处理。 容器&#xff1a;是将多个数据存储到一起&#xf…

异常处理python 空气质量问题_python的异常处理

异常处理什么是异常&#xff1f;首先要清楚&#xff0c;什么是异常&#xff0c;异常就是程序运行时发生错误的信号(在程序出现错误时&#xff0c;则会产生一个异常&#xff0c;若程序没有处理它&#xff0c;则会抛出该异常&#xff0c;程序的运行也随之终止)&#xff0c;在pyth…

Android获取屏幕实际高度跟显示高度,判断Android设备是否拥有虚拟功能键

//获取屏幕尺寸&#xff0c;不包括虚拟功能高度 getWindowManager().getDefaultDisplay().getHeight();获取屏幕原始尺寸高度&#xff0c;包括虚拟功能键高度&#xff0c; private int getDpi(){ int dpi 0;Display display getWindowManager().getDefaultDisplay();Displa…

cad小插件文字刷_文字狗最佳排版神器 小恐龙公文排版助手Office WPS插件

文字狗最佳排版神器文字狗最佳排版神器 小恐龙公文排版助手Office WPS插件1.85最新版 无需注册、无需其他费用、无广告。相信大家所需要提交的各种论文、报告等Word文档都对格式有着非常严格的要求&#xff0c;对标题、目录、正文都有不同的要求。尤其是对于公文&#xff0c;要…

Java中的对象、private关键字、this关键字、构造方法

面向对象 概述&#xff1a;Java一种面向对象的程序设计语言&#xff0c;面向对象思想是一种程序设计思想&#xff0c;在面向对象思想的指引下&#xff0c;使用Java语言去设计、开发计算机程序。 这里的对象泛指现实中一切事物&#xff0c;每种事物都具备自己的属性和行为。 …

2060显卡驱动最新版本_教程:怎么安装更新NVIDIAAMD显卡驱动?

PART-1:装驱动这么简单的事情真的需要写教程吗&#xff1f;我自己都理解不了我为什么要写这样一个教程&#xff0c;但是如你所见&#xff0c;他确实被我写出来了&#xff0c;而且对大部分人都挺有用。首先&#xff0c;使用鲁大师以及驱动精灵这类软件的同学自己喜欢就好&#x…

C语言实现泛型编程

http://www.cnblogs.com/archimedes/p/c-general-function1.html转载于:https://www.cnblogs.com/LittleTiger/p/3980416.html

中电福富外包offer要等多久_记一次外包经历

开题&#xff0c;我是知道外包很坑的&#xff0c;无论从待遇&#xff0c;体验&#xff0c;未来职业发展&#xff0c;那都是非常负面的。最近随家人&#xff08;二孩都需要照顾&#xff09;搬到弱二线城市&#xff0c;想找个开发岗&#xff0c;招聘网上基本都被外包包场了&#…

mysql 两个时间相差大于24小时的数据_MySQL 主从同步延迟的原因及解决办法(仅学习)...

原文链接&#xff1a;https://blog.csdn.net/hao_yunfeng/article/details/82392261Mysql主从基本原理&#xff0c;主要形式以及主从同步延迟原理 (读写分离)导致主库从库数据不一致问题的及解决方案 一、主从数据库的区别 从数据库(Slave)是主数据库的备份&#xff0c;当主数据…

分形之万花筒

万花筒是一种光学玩具&#xff0c;只要往筒眼里一看&#xff0c;就会出现一朵美丽的“花”样。将它稍微转一下&#xff0c;又会出现另一种花的图案。不断地转&#xff0c;图案也在不断变化&#xff0c;所以叫“万花筒”。万花筒的图案是靠玻璃镜子反射而成的。它是由三面相交成…

java中常用API、Scanner类、匿名对象、Random类、ArrayList类、对象数组

java中常用API&#xff1a; API&#xff1a;Application Programming Interface&#xff0c;应用程序编程接口。Java API是JDK中提供给我们使用的类的说明文档。这些类将底层的代码实现封装了起来&#xff0c;我们不需要关心这些类是如何实现的&#xff0c;只需要知道如何使用…

数字图像处理课设图像的锐化_数字图像处理图像锐化处理.ppt

数字图像处理图像锐化处理4.7.2 灰度级到彩色转换 灰度级到彩色转换(例) 在HSI彩色空间的直方图均衡强度均衡处理没有改变图像的色调和饱和度值&#xff0c;但它的确影响了整体图像的彩色感观。 向量分量可以用传统的灰度邻域处理单独地平滑RGB图像的每一平面得到。 用拉普拉斯…

Java中String类、字符串常量池、字符串常用方法

String类&#xff1a; String代表字符串类&#xff0c;java中所有双引号中的内容都称为字符串&#xff0c;如&#xff1a;“hello”。字符串是不可改变的&#xff0c;因此字符串是可以共享使用的&#xff0c;相当于char字符数组&#xff0c;但是底层原理是byte字节数组。 创建…

mysql同步数据到另一张表_mysql:Otter跨机房数据同步(单向)

重要说明&#xff1a;需要同步的表必须要有主键 主键 主键otter是一款基于Java且免费、开源基于数据库增量日志解析&#xff0c;准实时同步到本机房或异地机房的mysql/oracle数据库的解决方案。Otter目前支持了什么1. 单向同步&#xff0c; mysql/oracle互相同步2. 双向同步&am…

04day1

无穷的数列 找规律 【问题描述】 有一个无穷序列如下&#xff1a; 110100100010000100000… 请你找出这个无穷序列中指定位置上的数字。 【输入】 第一行一个正整数 N&#xff0c;表示询问次数&#xff1b;接下来的 N 行每行一个正整数 Ai&#xff0c;Ai 表示在序列中的位置。 …

arraylist扩容是创建新数组吗 java_Java编程之数组扩容

一、背景数组在实际的系统开发中用的越来越少了&#xff0c;我们只有在阅读某些开源项目时才会看到数组的使用。在Java中&#xff0c;数组与List、Set、Map等集合类相比&#xff0c;后者使用起来方便&#xff0c;但是在基本数据类型处理方面&#xff0c;数组还是占优势的&#…

【转】Eclipse+CDT+Gcc编译选项控制

原文地址&#xff1a;http://www.oschina.net/question/4873_19441 如果我们的程序调用动态链接库&#xff0c;当在cdt中运行的时候&#xff0c;可以通过run-->enviroment-->添加LD_LIBRARY_PATH 环境变量来设置查找动态链接库文件的路径。但是在运行的时候&#xff0c;程…