由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - don't understand this list (C++ STL)
相关主题
A C++ STL questionC++ vector 一边遍历一边删
good C++ open source project?说c++不难的欢迎来看看这个
大家学习STL都是看SGI的文档么?STL里面#include的问题
c++ stl里面有hash table吗?auto_ptr_array.h 疑问
构建一个快速查询字典(数据结构题)?请推荐本 STL 的好书
reading STL list implementation如何把文件内容读到2D的vector里?
一个C++的问题定义 单链表 数组,会不会很奇怪
也问个STL的问题, 谢谢修改map的键值
相关话题的讨论汇总
话题: stl话题: c++话题: pop话题: erase话题: void
进入Programming版参与讨论
1 (共1页)
b***n
发帖数: 590
1
member functions of the C++ (SGI STL, according to Hou's book)
STL list container:
void pop_front() {erase(begin());}
void pop_back() {iterator tmp=end(); erase(--tmp);}
For the pop_back(), why not juse write as:
void pop_back() {erase(--end());}
looks like it should also work.
Thanks!
t****t
发帖数: 6806
2
sure it works. in fact your way is the Standard way.

【在 b***n 的大作中提到】
: member functions of the C++ (SGI STL, according to Hou's book)
: STL list container:
: void pop_front() {erase(begin());}
: void pop_back() {iterator tmp=end(); erase(--tmp);}
: For the pop_back(), why not juse write as:
: void pop_back() {erase(--end());}
: looks like it should also work.
: Thanks!

1 (共1页)
进入Programming版参与讨论
相关主题
修改map的键值构建一个快速查询字典(数据结构题)?
并行程序能做到不用专门写么?reading STL list implementation
NodeJS厉害一个C++的问题
What is wrong in this array declaration.也问个STL的问题, 谢谢
A C++ STL questionC++ vector 一边遍历一边删
good C++ open source project?说c++不难的欢迎来看看这个
大家学习STL都是看SGI的文档么?STL里面#include的问题
c++ stl里面有hash table吗?auto_ptr_array.h 疑问
相关话题的讨论汇总
话题: stl话题: c++话题: pop话题: erase话题: void