当前位置: 首页 > news >正文

沈阳做网站的公司活动营销案例100例

沈阳做网站的公司,活动营销案例100例,西宁专业网站建设公司,网站刷流量有用吗🎈个人主页:🎈 :✨✨✨初阶牛✨✨✨ 🐻强烈推荐优质专栏: 🍔🍟🌯C的世界(持续更新中) 🐻推荐专栏1: 🍔🍟🌯C语言初阶 🐻推荐专栏2: 🍔…

在这里插入图片描述

🎈个人主页:🎈 :✨✨✨初阶牛✨✨✨
🐻强烈推荐优质专栏: 🍔🍟🌯C++的世界(持续更新中)
🐻推荐专栏1: 🍔🍟🌯C语言初阶
🐻推荐专栏2: 🍔🍟🌯C语言进阶
🔑个人信条: 🌵知行合一
🍉本篇简介:>:讲解C++中STL中list简单使用.

目录

  • 前言
  • 一、构造函数:
    • (1) 无参构造
    • (2) 用n个val构造
    • (3) 迭代器区间构造
    • (4) 拷贝构造
  • 二、访问数据
    • (1) 迭代器
    • (2) Element access:
  • 三、修改(重点)
    • (1) 头插/删 && 尾插/删
    • (2) insert && erase
      • 🍔insert
      • 🍔erase
    • (3) 迭代器失效问题

前言

官方查询文档

本文的目的主要是介绍list的常用接口,从构造函数,访问数据,修改数据等接口函数介绍.帮助大家初步掌握list的使用,后续会分享list模拟实现,从底层理解list更加深刻的理解list.

一、构造函数:

在这里插入图片描述

函数模型表头
explicit list(const allocator_type & alloc = allocator_type());无参构造
explicit list(size_type n, const value_type & val = value_type())n个val初始化
list(InputIterator first, InputIterator last)迭代器区间初始化
list(const list & x);拷贝构造

学习了stringvector这里就不过多介绍了.

(1) 无参构造

测试代码:

void test1()
{//无参构造	explicit list(const allocator_type & alloc = allocator_type());list<int> L1;cout << "L1=";for (auto it : L1){cout << it << " ";}cout << endl;
}

运行结果:

L1=

(2) 用n个val构造

	//使用n个val构造	explicit list(size_type n, const value_type & val = value_type())list<int> L2(5,2);cout << "L2=";for (auto it : L2){cout << it << " ";}cout << endl;

运行结果:

L2=2 2 2 2 2

(3) 迭代器区间构造

	//迭代器区间构造//template <class InputIterator>//list(InputIterator first, InputIterator last)int arr[] = { 1,2,3,4,5,6,7,8,9,10 };list<int> L3(arr, arr + 10);cout << "L3=";for (auto it : L3){cout << it << " ";}cout << endl;

运行结果:

L3=1 2 3 4 5 6 7 8 9 10

(4) 拷贝构造

	//拷贝构造	list(const list & x);cout << "L4=";list<int> L4(L3);//上面的 L3=1 2 3 4 5 6 7 8 9 10for (auto it : L4){cout << it << " ";}cout << endl;

运行结果:

L4=1 2 3 4 5 6 7 8 9 10

二、访问数据

(1) 迭代器

接口名含义
begin()返回第一个有效元素位置的迭代器
end()返回最后一个有效元素位置的迭代器

(2) Element access:

接口名含义
front()返回list的第一个有效结点中存储的值的引用
back()返回list的最后一个有效节点中存储的值的引用

测试代码:

void test2()
{//测试迭代器list<int> L1;L1.push_back(1);L1.push_back(4);L1.push_back(6);L1.push_back(8);L1.push_back(12);L1.push_back(20);list<int>::iterator it = L1.begin();while (it != L1.end()){cout << *it << " ";++it;}cout << endl;//Element access:cout << "front()=" << L1.front() << endl;	//返回list的第一个有效结点中存储的值的引用cout << "back()=" << L1.back() << endl;		//返回list的最后一个有效节点中存储的值的引用
}

运行结果:

1 4 6 8 12 20
front()=1
back()=20

三、修改(重点)

在这里插入图片描述

接口名解释
push_front头插
pop_front头删
push_back尾插
pop_back尾删
insertlist中的 pos 位置中插入值为val的元素
erase删除list 中的pos位置的元素
swap交换两个list
clear清除list中的有效数据

(1) 头插/删 && 尾插/删

void test3()
{list<int> L1;L1.push_back(1);L1.push_back(3);L1.push_back(4);L1.push_back(5);L1.push_back(7);L1.push_back(9);for (auto it : L1){cout << it << " ";}cout << endl;//头插	L1.push_front(0);L1.push_front(-1);cout << "依次头插0 和-1后:	";for (auto it : L1){cout << it << " ";}cout << endl;//头删L1.pop_front();cout << "头删一次后:		";for (auto it : L1){cout << it << " ";}cout << endl;//尾删L1.pop_back();L1.pop_back();cout << "尾删两次后:		";for (auto it : L1){cout << it << " ";}cout << endl;
}

运行结果:

1 3 4 5 7 9
依次头插0-1:       -1 0 1 3 4 5 7 9
头删一次后:             0 1 3 4 5 7 9
尾删两次后:             0 1 3 4 5

(2) insert && erase

🍔insert

在这里插入图片描述

接口名解释
iterator insert (iterator position, const value_type& val);pos位置插入值val
void insert (iterator position, size_type n, const value_type& val);pos位置开始,插入nval
void insert (iterator position, InputIterator first, InputIterator last);pos位置插入,一个迭代器区间的值

由于list并不支持下标随机访问元素(" []"),所以,我们在使用迭代器的时候,避免使用
迭代器+ num
例如:L1.begin()+2

void test4()
{int arr[] = { 1,2,3,4,5,6,7,8 };list<int> L1(arr, arr + 8);for (auto it : L1)						//1 2 3 4 5 6 7 8{cout << it << " ";}cout << endl;// insert//iterator insert (iterator position, const value_type& val);\//list的迭代器不支持直接+=num//L1.insert(L1.begin()+2 ,66);	//报错auto it1 = L1.begin();++it1;++it1;L1.insert(it1, 66);for (auto it : L1)						//1 2 66 3 4 5 6 7 8{cout << it << " ";}cout << endl;//void insert(iterator position, size_type n, const value_type & val);L1.insert(L1.begin(), 3, 0);	//在第一个位置插入3个0for (auto it : L1)						//0 0 0 1 2 66 3 4 5 6 7 8{cout << it << " ";}cout << endl;//template <class InputIterator>//	void insert(iterator position, InputIterator first, InputIterator last);int arr2[] = { -1,-2,-3 };L1.insert(L1.begin(), arr2, arr2+3);	//在第一个位置插入一段迭代器区间的值for (auto it : L1)						//-1 -2 -3 0 0 0 1 2 66 3 4 5 6 7 8{cout << it << " ";}cout << endl;
}

在这里插入图片描述

🍔erase

在这里插入图片描述

接口名解释
iterator erase (iterator position);删除该迭代器位置的值
iterator erase (iterator first, iterator last);删除迭代器区间中的值

测试代码:

void test5()
{int arr[] = { 1,2,3,4,5,6,7,8 };list<int> L1(arr, arr + 8);for (auto it : L1)						//1 2 3 4 5 6 7 8{cout << it << " ";}cout << endl;//eraseauto it1 = L1.end();		//指向最后一个有效元素的下一个位置--it1;					//指向最后一个有效元素的位置--it1;					//指向倒数第二个有效元素的位置L1.erase(it1);for (auto it : L1)						//1 2 3 4 5 6 8{cout << it << " ";}cout << endl;auto it2 = L1.begin();++it2;auto it3 = L1.end();--it3;L1.erase(it2,it3);for (auto it : L1)						//1 8{cout << it << " ";}cout << endl;
}

在这里插入图片描述

(3) 迭代器失效问题

猜一猜这段代码的结果是什么?

void test6()
{int arr[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };list<int> L1(arr, arr + 10);auto it = L1.begin();auto it2 = L1.end();--it2;while (it != it2){// erase()函数执行后,it所指向的节点已被删除,因此it无效,在下一次使用it时,it就失效了L1.erase(it);++it;}cout << endl;
}

在这里插入图片描述
在这里插入图片描述

解释:
迭代器失效即迭代器所指向的节点的无效,即该节点被删除了。因为list的底层结构为带头结点的双向循环链表,插入并不会导致扩容而产生迭代器失效问题,只有在删除时才会失效,并且失效的只是指向被删除节点的迭代器,其他迭代器不会受到影响。

如下图:
在这里插入图片描述

那我该如何解决这个问题呢?

在这里插入图片描述

void test6()
{int arr[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };list<int> L1(arr, arr+10);auto it = L1.begin();auto it2 =L1.end();--it2;while (it != it2){it=L1.erase(it);}for (auto it : L1)						{cout << it << " ";}cout << endl;
}

在这里插入图片描述

下一篇,我们list模拟实现见吧!
在这里插入图片描述

http://www.hkea.cn/news/307661/

相关文章:

  • 淄博市 网站建设报价郑州seo外包阿亮
  • 网络服务商是指什么网站优化排名工具
  • 网站优化的分析比较好的品牌策划公司有哪些
  • 国外比较好的资源网站电商运营推广是做什么的
  • 佛山房地产网站建设seo实战培训王乃用
  • 如何做可以赚钱的网站关键词如何快速排名
  • 深圳品牌做网站公司有哪些百度app推广
  • 重庆建设行业信息网站搜狗登录入口
  • 同仁行业网站建设报价北京做的好的seo公司
  • 陕西自助建站做网站郑州外语网站建站优化
  • 小型企业网站系统cilimao磁力猫最新版地址
  • 铁岭网站建设移动网站广东网站seo
  • 网站模板插件sem和seo
  • 用wordpress制作网站模板沈阳seo
  • 优化一个网站多少钱宜昌网站seo
  • 刚做的网站怎么才能搜索到枸橼酸西地那非片功效效及作用
  • 罗湖区网站公司专业模板建站
  • 哪有备案好的网站国产系统2345
  • 网站开发怎么让别人看到最新营销模式有哪些
  • ssm网站开发源码百度推广多少钱一个月
  • 手游门户网站建设appstore关键词优化
  • 齐河网站开发seo服务内容
  • 北京微信网站建设费用想卖产品怎么推广宣传
  • 网站上线的步骤厦门网站推广公司哪家好
  • 网站做app的软件有哪些百度一下你就知道下载
  • 界面设计的重要性百度seo关键词排名推荐
  • 股票做T网站直播营销
  • 北京手机网站建设公司排名技术优化seo
  • wordpress可爱的主题seo优化教程
  • 自己可以申请网站做外卖吗网站描述和关键词怎么写