list::remove()是C++ STL中的內置函數,用於從列表容器中刪除元素。它刪除與值比較的元素。它使用一個值作為參數,並從列表容器中刪除其值等於在函數的參數中傳遞的值的所有元素。
用法:
list_name.remove(val)
參數:該函數接受單個參數val,該參數val需要從列表中刪除的元素的值。 remove()函數將從列表中刪除所有值等於val的元素。
返回值:此函數不返回任何值。
以下示例程序旨在說明list::remove()函數。
// CPP program to illustrate the
// list::remove() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Creating a list
list<int> demoList;
// Add elements to the List
demoList.push_back(10);
demoList.push_back(20);
demoList.push_back(20);
demoList.push_back(30);
demoList.push_back(40);
// List before removing elements
cout << "List before removing elements: ";
for (auto itr = demoList.begin();
itr != demoList.end(); itr++) {
cout << *itr << " ";
}
// delete all elements with value 20
demoList.remove(20);
// List after removing elements
cout << "\nList after removing elements: ";
for (auto itr = demoList.begin();
itr != demoList.end(); itr++) {
cout << *itr << " ";
}
return 0;
}
輸出:
List before removing elements: 10 20 20 30 40 List after removing elements: 10 30 40
注意:此函數在線性時間複雜度中起作用。
相關用法
- C++ list::remove()、list::remove_if()用法及代碼示例
- C++ list end()用法及代碼示例
- C++ list pop_front()用法及代碼示例
- C++ list pop_back()用法及代碼示例
- C++ list push_front()用法及代碼示例
- C++ list max_size()用法及代碼示例
- C++ list front()用法及代碼示例
- C++ list splice()用法及代碼示例
- C++ list size()用法及代碼示例
- C++ list resize()用法及代碼示例
- C++ list reverse用法及代碼示例
- C++ list assign()用法及代碼示例
- C++ list back()用法及代碼示例
- C++ list merge()用法及代碼示例
- C++ list erase()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 list remove() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。