跳至主要內容
Kevin2li's Blog
Linux
Language
Algorithm
Tool
Tutorial
Blog
open in new window
搜索
Ctrl
K
Cheat sheet
Kevin2li
小于 1 分钟
#
Cheat sheet
参考:
https://hackingcpp.com/cpp/std/vector.html
open in new window
image.png
#
初始化
image.png
image.png
#
属性查询
#
获取长度、容量、为空
image.png
#
访问元素(查)
#
根据下标
image.png
#
首尾元素
image.png
#
添加元素(增)
#
尾部追加
image.png
#
中间插入
image.png
#
指针范围插入
image.png
#
插入构造类型元素
image.png
#
删除元素(删)
#
删除尾部
image.png
#
清空
image.png
#
指针(范围)删除
image.png
#
修改元素(改)
#
assign
image.png
#
遍历元素
#
方式1:基于range(推荐)
image.png
#
方式2:基于iterators
正向遍历
反向遍历
#
方式3:基于indices
image.png
#
高级
#
容量增长策略
image.png
上一页
/vanblog/文本编辑器—Visual Studio Code日常使用教程
下一页
Ubuntu