黑马c++ STL部分 笔记(3) vector容器

vector可以动态扩展(不是在原有基础上扩展,而是找更大空间,然后将元数据拷贝新空间,释放原空间)

  • vector容器的迭代器是支持随机访问的迭代器

1. vector容器的构造

// vector容器的构造(一般用拷贝构造)
/*
vector<T> v; //采用模板实现类实现,默认构造函数
vector(v.begin(), v.end()); //将v[begin(), end())区间中的元素拷贝给本身。
vector(n, elem); //构造函数将n个elem拷贝给本身。
vector(const vector &vec); //拷贝构造函数。
*/
#include <bits/stdc++.h>
using namespace std;
void printvector(vector<int> &v)
{for (vector<int>::iterator it = v.begin(); it != v.end(); it++){cout << *it << " ";}cout << endl;
}
void test01()
{vector<int> v1; // 默认构造for (int i = 0; i < 10; i++){v1.push_back(i);}printvector(v1);vector<int> v2(v1.begin(), v1.end()); // 利用区间方式进行构造printvector(v2);vector<int> v3(3, 100);printvector(v3); // n个element赋值vector<int> v4(v3);printvector(v4); // 拷贝构造
}int main()
{test01();
}

2. vector容器的赋值操作

// vector容器的赋值操作(一般用=)
/*
vector& operator=(const vector &vec);//重载等号操作符
assign(beg, end); //将[beg, end)区间中的数据拷贝赋值给本身。
assign(n, elem); //将n个elem拷贝赋值给本身。
*/
#include <bits/stdc++.h>
using namespace std;
void printvector(vector<int> &v)
{for (vector<int>::iterator it = v.begin(); it != v.end(); it++){cout << *it << " ";}cout << endl;
}
void test01()
{vector<int> v1;for (int i = 0; i < 10; i++){v1.push_back(i);}printvector(v1);vector<int> v2;v2 = v1; //=方式printvector(v2);vector<int> v3;v3.assign(v1.begin(), v1.end()); // assign方式printvector(v3);vector<int> v4;    // 构造v4.assign(3, 100); // 赋值:n个element方式printvector(v4);
}int main()
{test01();
}

 3.vector容量和大小

// vector容量和大小
/*
empty(); //判断容器是否为空
capacity(); //容器的容量
size(); //返回容器中元素的个数 capacity>=size
resize(int num); //重新指定容器的长度为num
若容器变长,则以默认值0填充新位置。
若容器变短,则末尾超出容器长度的元素被删除。
resize(int num, elem); //重新指定容器的长度为num
若容器变长,则以elem值填充新位置。
若容器变短,则末尾超出容器长度的元素被删除
*/#include <bits/stdc++.h>
using namespace std;
void printvector(vector<int> &v)
{for (vector<int>::iterator it = v.begin(); it != v.end(); it++){cout << *it << " ";}cout << endl;
}
void test01()
{vector<int> v1;for (int i = 0; i < 10; i++){v1.push_back(i);}printvector(v1);// 判空if (v1.empty()){cout << "v1为空" << endl;}else{cout << "v1不为空" << endl;cout << "v1容量为" << v1.capacity() << endl; // 16cout << "v1大小为" << v1.size() << endl;     // 10}// 重新指定大小v1.resize(20);     // 默认用0填充printvector(v1);   // 0 1 2 3 4 5 6 7 8 9 0 0 0 0 0 0 0 0 0 0v1.resize(21, 99); // 指定用99填充printvector(v1);   // 0 1 2 3 4 5 6 7 8 9 0 0 0 0 0 0 0 0 0 0 99v1.resize(5);printvector(v1); // 0 1 2 3 4
}int main()
{test01();
}
/*
总结:
判断是否为空 — empty
返回元素个数 — size
返回容器容量 — capacity
重新指定大小 — resize
*/

 4.vector插入和删除

// vector插入和删除
/*
push_back(ele); //尾部插入元素ele
pop_back(); //删除最后一个元素
insert(const_iterator pos, ele); //迭代器指向位置pos插入元素ele
insert(const_iterator pos, int count,ele);//迭代器指向位置pos插入count个元素ele
erase(const_iterator pos); //删除迭代器指向的元素
erase(const_iterator start, const_iterator end);//删除迭代器从start到end之间的元素
clear(); //删除容器中所有元素
*/#include <bits/stdc++.h>
using namespace std;
void printvector(vector<int> &v)
{for (vector<int>::iterator it = v.begin(); it != v.end(); it++){cout << *it << " ";}cout << endl;
}
void test01()
{vector<int> v1;for (int i = 0; i < 10; i++){v1.push_back(i); // 尾插法}printvector(v1); // 0 1 2 3 4 5 6 7 8 9v1.pop_back();   // 尾删printvector(v1); // 0 1 2 3 4 5 6 7 8// 插入insertv1.insert(v1.begin(), 100);     // 指定位置插入数据printvector(v1);                // 100 0 1 2 3 4 5 6 7 8v1.insert(v1.begin(), 2, 1000); // 指定位置插入n个elementprintvector(v1);                // 1000 1000 100 0 1 2 3 4 5 6 7 8// 删除erasev1.erase(v1.begin());                 // 删除指定位置元素printvector(v1);                      // 1000 100 0 1 2 3 4 5 6 7 8v1.erase(v1.begin(), v1.begin() + 1); // 删除区间元素(左闭右开)printvector(v1);                      // 100 0 1 2 3 4 5 6 7 8// 清空clearv1.clear();printvector(v1);
}int main()
{test01();
}
/*
总结:
尾插 — push_back
尾删 — pop_back
插入 — insert (位置迭代器)
删除 — erase (位置迭代器)
清空 — clear
*/

5.vector数据存取

// vector数据存取
/*
at(int idx); //返回索引idx所指的数据
operator[]; //返回索引idx所指的数据
front(); //返回容器中第一个数据元素
back(); //返回容器中最后一个数据元素
*/#include <bits/stdc++.h>
using namespace std;
void printvector(vector<int> &v)
{for (vector<int>::iterator it = v.begin(); it != v.end(); it++){cout << *it << " ";}cout << endl;
}
void test01()
{vector<int> v1;for (int i = 0; i < 10; i++){v1.push_back(i);}for (int i = 0; i < v1.size(); i++) //[]方式{cout << v1[i] << " "; // 0 1 2 3 4 5 6 7 8 9}cout << endl;for (int i = 0; i < v1.size(); i++) // at方式{cout << v1.at(i) << " "; // 0 1 2 3 4 5 6 7 8 9}cout << endl;cout << v1.front() << " " << v1.back() << endl; // 获取第一个和最后一个元素 0 9
}int main()
{test01();
}
/*
总结:
除了用迭代器获取vector容器中元素,[ ]和at也可以
front返回容器第一个元素
back返回容器最后一个元素
*/

 6.vector互换容器

// vector互换容器
/*
swap(vec); // 将vec与本身的元素互换
*/#include <bits/stdc++.h>
using namespace std;
void printvector(vector<int> &v)
{for (vector<int>::iterator it = v.begin(); it != v.end(); it++){cout << *it << " ";}cout << endl;
}
// 1 基本使用
void test01()
{vector<int> v1;for (int i = 0; i < 10; i++){v1.push_back(i);}cout << "交换前" << endl;printvector(v1); // 0 1 2 3 4 5 6 7 8 9vector<int> v2;for (int i = 9; i >= 0; i--){v2.push_back(i);}printvector(v2); // 9 8 7 6 5 4 3 2 1 0cout << "交换后" << endl;v1.swap(v2);printvector(v1); // 9 8 7 6 5 4 3 2 1 0printvector(v2); // 0 1 2 3 4 5 6 7 8 9
}
// 2 实际用途:巧用swap可以收缩内存空间
void test02()
{vector<int> v;for (int i = 0; i < 100000; i++){v.push_back(i);}cout << "v的容量:" << v.capacity() << endl; // 131072cout << "v的大小:" << v.size() << endl;     // 100000v.resize(3);cout << "v的容量:" << v.capacity() << endl; // 131072cout << "v的大小:" << v.size() << endl;     // 3// 巧用swap收缩内存空间,不会浪费空间vector<int>(v).swap(v);                     // vector<int>(v)匿名对象cout << "v的容量:" << v.capacity() << endl; // 3cout << "v的大小:" << v.size() << endl;     // 3
}int main()
{test01();test02();
}
/*
总结:swap可以使两个容器互换,可以达到实用的收缩内存效果
*/

7.vector预留空间 

// vector预留空间
/*
功能描述:
减少vector在动态扩展容量时的扩展次数
函数原型:
reserve(int len);//容器预留len个元素长度,预留位置不初始化,元素不可访问。
*/#include <bits/stdc++.h>
using namespace std;
void test01()
{vector<int> v1;int num1 = 0; // 统计开辟的次数int *p1 = NULL;for (int i = 0; i < 100000; i++){v1.push_back(i);if (p1 != &v1[0]){p1 = &v1[0]; // 若更换了内存,则p!=v首地址num1++;}}cout << num1 << endl; // 18// 利用reservr预留空间vector<int> v2;v2.reserve(100000);int num2 = 0; // 统计开辟的次数int *p2 = NULL;for (int i = 0; i < 100000; i++){v2.push_back(i);if (p2 != &v2[0]){p2 = &v2[0]; // 若更换了内存,则p!=v首地址num2++;}}cout << num2 << endl; // 1
}int main()
{test01();
}
/*
总结:如果数据量较大,可以一开始利用reserve预留空间
*/

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

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

相关文章

苹果放弃10年造车计划,全力专注人工智能领域

据美国媒体报道&#xff0c;苹果公司在周二在内部一次约12分钟的简短会议上披露消息&#xff1a;苹果将取消长达十年的造车计划&#xff0c;转而投向生成式AI。 据知情人士透露&#xff0c;苹果首席运营官杰夫威廉姆斯&#xff08;Jeff Williams&#xff09;和负责这项工作的副…

干货分享②:免费制作发票管理系统!

前天为大家带来了&#xff0c;如何使用码上飞制作资产管理系统的教程&#xff0c;今天继续教大家使用码上飞来制作发票管理系统&#xff01; 第一步&#xff1a;老规矩&#xff0c;先上号&#xff01; 码上飞 CodeFlying | AI 智能软件开发平台&#xff01; 第二步[提出需求]…

QEMU之内存虚拟化

内存虚拟化方案 最直观的方案&#xff0c;将QEMU进程的虚拟地址空间的一部分作为虚拟机的物理地址。但该方案有一个问题&#xff1a; 在物理机上&#xff0c;CPU对内存的访问在保护模式下是通过分段分页实现的&#xff0c;在该模式下&#xff0c;CPU访问时使用的是虚拟地址&am…

SpringBoot实现短链跳转

目录 1.背景介绍 2.短链跳转的意义 3.SpringBoot中的代码实现 1.建议短链-长链的数据库表&#xff1a;t_url_map: 2.映射实体 3.Dao层实现 4.Service层实现 5.Controller层实现 3.结果测试 4.问题 1.背景介绍 短链跳转是一种通过将长链接转换为短链接的方式&…

【两颗二叉树】【递归遍历】【▲队列层序遍历】Leetcode 617. 合并二叉树

【两颗二叉树】【递归遍历】【▲队列层序遍历】Leetcode 617. 合并二叉树 解法1 深度优先 递归 前序解法2 采用队列进行层序遍历 挺巧妙的可以再看 ---------------&#x1f388;&#x1f388;题目链接&#x1f388;&#x1f388;------------------- 解法1 深度优先 递归 前…

【InternLM 实战营笔记】大模型评测

随着人工智能技术的快速发展&#xff0c; 大规模预训练自然语言模型成为了研究热点和关注焦点。OpenAI于2018年提出了第一代GPT模型&#xff0c;开辟了自然语言模型生成式预训练的路线。沿着这条路线&#xff0c;随后又陆续发布了GPT-2和GPT-3模型。与此同时&#xff0c;谷歌也…

VS连接MySQL以及找不到libmysql.dll的解决方法

VS连接数据库需要在项目中进行配置&#xff0c;具体可见 https://blog.csdn.net/weixin_40582034/article/details/115562097?ops_request_misc%257B%2522request%255Fid%2522%253A%2522170891897216800213058288%2522%252C%2522scm%2522%253A%252220140713.130102334..%2522…

C++之数组

1&#xff0c;概述 所谓数组&#xff0c;就是一个集合&#xff0c;里面存放了相同类型的数据元素 特点1&#xff1a;数组中没干过数据元素都是相同的数据类型 特点2&#xff1a;数组都是连续存放位置组成的 2&#xff0c;一维数组 2.1 一维数组的定义 一维数组定义有三种…

抖音视频评论提取软件|视频数据批量采集工具

抖音视频评论批量下载软件是一款基于C#开发的高效工具&#xff0c;旨在帮助用户快速获取抖音视频评论数据。无论您是市场分析师、社交媒体管理者还是数据研究人员&#xff0c;这款软件都会成为您工作中不可或缺的利器。 软件的关键功能包括&#xff1a; 关键词搜索&#xff1…

【C#】SixLabors.ImageSharp和System.Drawing两者知多少

欢迎来到《小5讲堂》 大家好&#xff0c;我是全栈小5。 这是《C#》系列文章&#xff0c;每篇文章将以博主理解的角度展开讲解&#xff0c; 特别是针对知识点的概念进行叙说&#xff0c;大部分文章将会对这些概念进行实际例子验证&#xff0c;以此达到加深对知识点的理解和掌握。…

Mac 制作可引导安装器

Mac 使用U盘或移动固态硬盘制作可引导安装器&#xff08;以 Monterey 为例&#xff09; 本教程参考 Apple 官网相关教程 创建可引导 Mac OS 安装器 重新安装 Mac OS 相关名词解释 磁盘分区会将其划分为多个单独的部分&#xff0c;称为分区。分区也称为容器&#xff0c;不同容器…

uniapp实战:父子组件传参之子组件数量动态变化

需求说明 现有的设置单元列表,每个带有虚线加号的可以看做是一组设置单元,点击加号可以添加一组设置单元.点击设置单元右上角可以删除对应的设置单元. 实现思路说明 利用数组元素添加或是删除的方式实现页面数量动态变化.由于每个设置单元内容都相同所以单独封装了一个子组件.…