STL——容器(deque)deque 的删除 clear() erase()
deque.clear();
//移除容器的所有数据
1 #include <iostream>
2 #include <deque>
3
4 using namespace std;
5
6 int main()
7 {
8 int num[] = { 111,222,333,444,555 };
9 deque<int> deqInt_A(num, num + size(num));
10
11 cout << "deqInt_A中的元素个数为:";
12 cout << deqInt_A.size() << endl;
13
14 cout << "deqInt_A所占用内存:";
15 cout << sizeof(deqInt_A) << endl;
16
17 cout << "遍历deqInt_A:";
18 for (deque<int>::iterator it = deqInt_A.begin(); it != deqInt_A.end(); it++)
19 {
20 cout << *it << " ";
21 }
22
23 //删除容器中
24 deqInt_A.clear();
25
26 cout << "\n\nclear后,deqInt_A中的元素个数为:";
27 cout << deqInt_A.size();
28 cout << "\ndeqInt_A所占用内存:";
29 cout << sizeof(deqInt_A);
30 cout << "\nclear后,遍历deqInt_A:" << endl;
31 for (deque<int>::iterator it = deqInt_A.begin(); it != deqInt_A.end(); it++)
32 {
33 cout << *it << " ";
34 }
35
36 return 0;
37 }
打印结果:
可以发现内存是并没有释放的
deque.erase(beg,end);
//删除[beg,end)区间的数据,返回下一个数据的位置。
1 #include <iostream>
2 #include <deque>
3
4 using namespace std;
5
6 int main()
7 {
8 int num[] = { 111,222,333,444,555 };
9 deque<int> deqInt_A(num, num + size(num));
10
11 cout << "遍历deqInt_A:";
12 for (deque<int>::iterator it = deqInt_A.begin(); it != deqInt_A.end(); it++)
13 {
14 cout << *it << " ";
15 }
16 cout << "\ndeqInt_A中的元素个数为:";
17 cout << deqInt_A.size() << endl;
18
19 cout << "deqInt_A所占用内存:";
20 cout << sizeof(deqInt_A) << endl;
21
22
23
24 cout << "\n删除容器中前三个元素后,遍历deqInt_A:";
25 //删除容器中前三个元素后,用返回的迭代器遍历,返回了下一个元素的位置
26 for (deque<int>::iterator it = deqInt_A.erase(deqInt_A.begin(), deqInt_A.begin() +3); it != deqInt_A.end(); it++)
27 {
28 cout << *it << " ";
29 }
30 cout << "\n删除容器中前三个元素后,deqInt_A中的元素个数为:";
31 cout << deqInt_A.size();
32
33 cout << "\n删除容器中前三个元素后,deqInt_A所占用内存:";
34 cout << sizeof(deqInt_A);
35
36 return 0;
37 }
打印结果:
可以发现,deqInt_A中的元素删除后,占用的内存空间大小并没有变化
deque.erase(pos);
//删除pos位置的数据,返回下一个数据的位置。
1 #include <iostream>
2 #include <deque>
3
4 using namespace std;
5
6 int main()
7 {
8 int num[] = { 111,222,333,444,555 };
9 deque<int> deqInt_A(num, num + size(num));
10
11 cout << "遍历deqInt_A:";
12 for (deque<int>::iterator it = deqInt_A.begin(); it != deqInt_A.end(); it++)
13 {
14 cout << *it << " ";
15 }
16 cout << "\ndeqInt_A中的元素个数为:";
17 cout << deqInt_A.size() << endl;
18
19 cout << "deqInt_A所占用内存:";
20 cout << sizeof(deqInt_A) << endl;
21
22 cout << "\n删除容器中第三个元素后边的元素后,用返回的迭代器遍历后边的元素:";
23 //删除容器中第三个元素后边的元素后,用返回的迭代器遍历,返回了下一个元素的位置,注意这个数字不是第三个,是第三个之后的那个元素
24 for (deque<int>::iterator it = deqInt_A.erase(deqInt_A.begin() + 3); it != deqInt_A.end(); it++)
25 {
26 cout << *it << " ";
27 }
28 cout << "\n遍历 deqInt_A 中所有的元素:";
29 for (deque<int>::iterator it = deqInt_A.begin(); it != deqInt_A.end(); it++)
30 {
31 cout << *it << " ";
32 }
33 cout << "\n删除容器中第三个元素后边的元素后,deqInt_A中的元素个数为:";
34 cout << deqInt_A.size();
35
36 cout << "\n删除容器中第三个元素后边的元素后,deqInt_A所占用内存:";
37 cout << sizeof(deqInt_A);
38
39 return 0;
40 }
打印结果:
一般在项目中删除单个元素会这样用:
1 #include <iostream>
2 #include <deque>
3
4 using namespace std;
5
6 int main()
7 {
8 int num[] = { 111,222,333,444,555 };
9 deque<int> deqInt_A(num, num + size(num));
10
11 //删除等于 444 的元素
12 for (deque<int>::iterator it = deqInt_A.begin(); it != deqInt_A.end();)
13 {
14 if (*it == 444)
15 {
16 it = deqInt_A.erase(it); //删除元素后,erase 会返回下一个元素的位置,相当于 it++操作了
17 }
18 cout << *it << " ";
19 it++; //不把it++ 写到for循环的条件语句中,是为了避免删除元素后的越界访问,比如删除 444 后,555会在444的位置,这时候it++就会越界
20 }
21
22 return 0;
23 }
打印结果:
=======================================================================================================================
STL——容器(deque)deque 的删除 clear() erase()的更多相关文章
- STL——容器(deque) 构造 & 头尾添加删除元素
1.deque容器概念 deque是"double-ended queue"的缩写,和vector一样都是STL的容器,唯一不同的是:deque是双端数组,而vector是单端的. ...
- STL容器:deque双端队列学习
所谓deque,是"double-ended queue"的缩写; 它是一种动态数组形式,可以向两端发展,在尾部和头部插入元素非常迅速; 在中间插入元素比较费时,因为需要移动其它元 ...
- STL容器分析--deque
deque,故名思义,双向队列.可以在头尾进行插入删除. 而STL中采用了链表+线性表的数据结构来实现deque,因而除了满足双向队列的特点以外,还支持随机访问. 下面,贴一段代码. 总览:双向队列是 ...
- STL——容器(deque) deque 的大小
1. deque 的大小 deque.size(); //返回容器中元素的个数 1 #include <iostream> 2 #include <dequ ...
- STL——容器(deque) 元素的存取&迭代器
1. deque 的数据存取 这个部分和 vector 几乎一样 第一 使用下标操作 dequeName[0] = 100; //小心越界 第二 使用at 方法 如: dequeName.at(2 ...
- STL——容器(deque)deque 的插入 insert()
deque.insert(pos,elem); //在pos位置插入一个elem元素的拷贝,返回新数据的位置. 1 #include <iostream> 2 #include <d ...
- STL——容器(deque) deque 的赋值 assign() operator=() swap()
deque 的赋值分下边4种方法: deque.assign(beg,end); //将[beg, end)区间中的数据拷贝赋值给本身.注意该区间是左闭右开的区间. 1 #include <io ...
- ACM常用STL容器
// STL(标准模板库),由三大部分组成:容器,算法,迭代器 // STL六大组件:container(容器),algorthm(算法),iterator(迭代器) // function obje ...
- C++中防止STL中迭代器失效——map/set等关联容器——vector/list/deque等序列容器—如何防止迭代器失效—即erase()的使用
序列性容器::(vector和list和deque) erase迭代器不仅使所有指向被删元素的迭代器失效,而且使被 删元素之后的所有迭代器失效,所以不能使用erase(iter++)的方 式, ...
随机推荐
- Python_科学计算库
说明:若没有训练级联表,则需要相关级联表才能实现功能 文字识别 # -*- coding: utf-8 -*- """ 简介:用样本训练数据,再识别 "&quo ...
- Vegas媒体生成器是什么,有什么作用
在专业视频剪辑软件-Vegas的界面中,有一个媒体生成器的界面,此界面包含HitFilm Light Flares,Pro Type Titler,测试图案,纯色,棋盘格,色彩渐变,噪声纹理,致谢字幕 ...
- 「LOJ 537」「LibreOJ NOIP Round #1」DNA 序列
description NOIP 复赛之前,HSD 桑进行了一项研究,发现人某条染色体上的一段 DNA 序列中连续的\(k\)个碱基组成的碱基序列与做题的 AC 率有关!于是他想研究一下这种关系. 现 ...
- 唯一key的生成规则,可自己视情况改动
<?php function getMillisecond() { $time = explode ( " ", microtime ()); $time = $time[1 ...
- try-with-resources和multi-catch的使用
1.首先说一下以前开发中我们在处理异常时,我们会使用try-catch-finally来处理异常. //使用try-catch-finallypublic static void main(Strin ...
- Java基础教程——垃圾回收机制
垃圾回收机制 Garbage Collection,GC 垃圾回收是Java的重要功能之一. |--堆内存:垃圾回收机制只回收堆内存中对象,不回收数据库连接.IO等物理资源. |--失去使用价值,即为 ...
- JS基础入门,知识点总结归纳图
- 使用@RequestBody注解获取Ajax提交的json数据
最近在学习有关springMVC的知识,今天学习如何使用@RequestBody注解来获取Ajax提交的json数据内容. Ajax部分代码如下: 1 $(function(){ 2 $(" ...
- centOs7.5.64之前的操作系统搭建GitLab记录
GitLab搭建步骤: 1. Install and configure the necessary dependencies (1)yum install curl openssh-server o ...
- Java动态代理设计模式
本文主要介绍Java中两种常见的动态代理方式:JDK原生动态代理和CGLIB动态代理. 什么是代理模式 就是为其他对象提供一种代理以控制对这个对象的访问.代理可以在不改动目标对象的基础上,增加其他额外 ...