- 1、本文档共15页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
向量的使用(Use of vectors)
向量的使用(Use of vectors)
Such as:
The vector int * a.
Int b = 5;
A.p ush_back (b); / / there is a detailed solution below this function
Cout a [0]; / / / output is 5
Push_back adds a data at the end of the array
2. Pop_back removes the last data from the array
3. At the data of the number position
Begin to get the pointer to the head of the array
5. End gets the pointer to the last cell of the array + 1
6. Front gets the reference to the array header
7. Back gets the reference to the last unit of the array
8. Max_size gets the maximum size of a vector
9. Capacity current vector distribution size
The size of the current usage data
11. Resize changes the size of the current use of the data, and if it is larger than the current one, the default value is populated
12. Reserve changes the size of the space allocated for current vecotr
13. Erase the data item that the pointer points to
14. Clear empties the current vector
15. Rbegin returns the beginning of the vector backward (in fact, the original end - 1).
16. Rend returns the end pointer of the vector reversal construct (actually the original beg-1)
17. Empty determines whether vector is empty
18. Swap data with another vector
3.2 detailed function implementation: the vector int c.
C.c. Lear () removes all data in the container.
C.e mpty () determines whether the container is empty.
C.e rase (pos) deletes data from pos location
C.e rase (beg, end) deletes data from the [beg, end] interval
C.f ront () returns the first data.
Ci. nsert (pos, elem) inserts an elem copy at pos location
C.p op_back () deletes the last data.
C.p ush_back (elem) adds a data at the end.
C.r esize (num) resets the size of the container
C.s. ize the number of actual data in the container.
C.b egin () returns an iterator that points to the first element of the container
C.e nd () returns an iterator that points to the last element of the container
The use of vector vector
Vector containers use dynamic array storage and management objects. Beca
您可能关注的文档
- 加快WinXP启动速度的六种办法(Six ways to speed up the startup of WinXP).doc
- 加强入党积极分子教育培养工作的意见和建议(To strengthen the views and Suggestions on the training of education).doc
- 加强城市设计 提高城市发展质量(We will strengthen urban design to improve the quality of urban development).doc
- 加快内蒙古城镇化进程的思路和对策(The thought and countermeasure of speeding up urbanization in Inner Mongolia).doc
- 加气混凝土砌块墙体施工质量控制要点(Construction quality control points of reinforced concrete block wall).doc
- 加速度的瞬时变化问题(Instantaneous change in acceleration).doc
- 动力工程(Power engineering).doc
- 动力电缆(Power cable).doc
- 力、物体的平衡B2(The equilibrium of the force and the object is B2).doc
- 动力试题(广州)(Power questions (guangzhou)).doc
- 专题02+时事热点(精讲课件)2025年中考地理二轮复习讲练测(安徽专用).pptx
- 专题10+经济建设 2025年中考道德与法治二轮复习讲练测(广东专用).pptx
- 专题02+西游记【名著概览】+-+2025年中考语文必读名著演练.pptx
- 专题七+认识国家(课件)-【省心备考】2025年中考地理一轮复习优质课件.pptx
- 第22课《礼记》二则——《大道之行也》(课件)-2024-2025学年八年级语文下册同步备课精品资源.pptx
- 跨学科实践15:制作“龙骨水车”(课件)-2024-2025学年八年级物理下学期项目化课程案例.pptx
- 第13课_辽宋夏金元时期的对外交流(课件)2024-2025学年七年级历史下册同步教学课件.pptx
- 选择题专项讲解——综合类(课件)2025年初中道德与法治中考选择题练习.pptx
- 第21课《庄子》二则——《北冥有鱼》(课件)-2024-2025学年八年级语文下册同步备课精品资源.pptx
- 7.3+感受澳大利亚(第二课时)-2025学年七年级地理下册同步精品课堂(晋教版2024).pptx
文档评论(0)