在 C++ 中,可以使用 std::set
容器中的 erase()
成員函數來刪除指定元素
#include <iostream>
#include <set>
int main() {
std::set<int> my_set = {1, 2, 3, 4, 5};
// 查找要刪除的元素
int element_to_remove = 3;
auto it = my_set.find(element_to_remove);
if (it != my_set.end()) {
// 如果找到了元素,則刪除它
my_set.erase(it);
std::cout << "Element " << element_to_remove << " has been removed from the set." << std::endl;
} else {
std::cout << "Element " << element_to_remove << " not found in the set." << std::endl;
}
// 輸出修改后的集合
for (const auto& elem : my_set) {
std::cout << elem << " ";
}
return 0;
}
在這個示例中,我們首先創建了一個包含整數的 std::set
。然后,我們使用 find()
函數查找要刪除的元素。如果找到了該元素,我們使用 erase()
函數將其從集合中刪除。最后,我們遍歷并輸出修改后的集合。