- C 标准库
- C 标准库
- C++ 标准库
- C++ 库 - 主页
- C++ 库 - <fstream>
- C++ 库 - <iomanip>
- C++ 库 - <ios>
- C++ 库 - <iosfwd>
- C++ 库 - <iostream>
- C++ 库 - <istream>
- C++ 库 - <ostream>
- C++ 库 - <sstream>
- C++ 库 - <streambuf>
- C++ 库 - <原子>
- C++ 库 - <复杂>
- C++ 库 - <异常>
- C++ 库 - <功能>
- C++ 库 - <限制>
- C++ 库 - <语言环境>
- C++ 库 - <内存>
- C++ 库 - <新>
- C++ 库 - <数字>
- C++ 库 - <正则表达式>
- C++ 库 - <stdexcept>
- C++ 库 - <字符串>
- C++ 库 - <线程>
- C++ 库 - <元组>
- C++ 库 - <类型信息>
- C++ 库 - <实用程序>
- C++ 库 - <valarray>
C++ 列表库-erase() 函数
描述
C++ 函数std::list::erase()从列表中删除单个元素并将其大小减一。
宣言
以下是 std::list::erase() 函数形式 std::list 标头的声明。
C++98
iterator erase (iterator position);
C++11
iterator erase (const_iterator position);
参数
position - 列表元素的迭代器。
返回值
返回一个随机访问迭代器,它指向删除元素的位置。
例外情况
如果位置无效,则行为未定义。
时间复杂度
线性即 O(n)
例子
以下示例显示了 std::list::erase() 函数的用法。
#include <iostream> #include <list> using namespace std; int main(void) { list<int> l = {1, 2, 3, 4, 5}; cout << "Size of list befor erase operation = " << l.size() << endl; l.erase(l.begin()); cout << "Size of list after erase operation = " << l.size() << endl; cout << "List contains following elements" << endl; for (auto it = l.begin(); it != l.end(); ++it) cout << *it << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 -
Size of list befor erase operation = 5 Size of list after erase operation = 4 List contains following elements 2 3 4 5
列表.htm