size()
resize()
push_back()
pop_back()
clear()
empty()
begin()
end()
rbegin()
rend()
at()
erase(pos) 删除pos位置的数据
erase(beg,end) 删除[beg,end)区间的数据
insert(pos,elem) 在pos位置插入一个elem拷贝
size()
resize()
push_back()
pop_back()
clear()
empty()
begin()
end()
rbegin()
rend()
at()
erase(pos) 删除pos位置的数据
erase(beg,end) 删除[beg,end)区间的数据
insert(pos,elem) 在pos位置插入一个elem拷贝