4.STL六大组件

代码示例

 1 #include <vector>
 2 #include <list>
 3 #include <iostream>
 4 #include <algorithm>
 5 using namespace std;
 6 
 7 
 8 void main1()
 9 {
10     vector<int> myint{ 1,2,3,4,5 };
11     //容器
12     myint.push_back(10);
13     int a[5] = { 1,2,3,4,5 };
14 
15     //算法
16     for_each(myint.begin(), myint.end(), [](int x) {cout << x << endl; });
17     
18     //迭代器
19     //auto ix = myint.begin() + 2;//指针
20     for (auto ib = myint.begin(), ie = myint.end(); ib != ie; ib++)
21     {
22         cout << *ib << endl;
23     }
24     cin.get();
25 }
26 
27 void main()
28 {
29     list<int> mylist{ 1,2,3,4,5 };
30     mylist.push_front(10);
31     //不能对链表进行这样操作
32     //auto ib = mylist.begin() + 2;
33     //链表每次只能前进一个,迭代器会自动适应容器
34     auto ib = mylist.begin()++;
35 
36     cin.get();
37 }

 

转载于:https://www.cnblogs.com/xiaochi/p/8625643.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值