描述
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
相關用法
- C++ List erase_range()用法及代碼示例
- C++ List empty()用法及代碼示例
- C++ List emplace()用法及代碼示例
- C++ List emplace_front()用法及代碼示例
- C++ List emplace_back()用法及代碼示例
- C++ List end()用法及代碼示例
- C++ List cend()用法及代碼示例
- C++ List rbegin()用法及代碼示例
- C++ List remove_if()用法及代碼示例
- C++ List remove()用法及代碼示例
- C++ List crend()用法及代碼示例
- C++ List max_size()用法及代碼示例
- C++ List get_allocator()用法及代碼示例
- C++ List push_back()用法及代碼示例
- C++ List insert()用法及代碼示例
- C++ List merge()用法及代碼示例
- C++ List reverse()用法及代碼示例
- C++ List splice()用法及代碼示例
- C++ List begin()用法及代碼示例
- C++ List swap()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ List Library - erase() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。