當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ List 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

相關用法


注:本文由純淨天空篩選整理自 C++ List Library - erase() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。