legongju.com
我们一直在努力
2024-12-23 17:51 | 星期一

C++的set容器怎样使用

C++ 的 set 容器是一种关联式容器,它包含一组唯一的对象。每个元素在插入时都会自动按键进行排序。set 容器通常使用红黑树实现,因此插入、删除和查找操作的时间复杂度都是 O(log n)。

以下是使用 C++ set 容器的基本步骤:

  1. 包含头文件:
#include 
#include 
  1. 创建一个 set 对象:
std::set my_set;
  1. set 中插入元素:
my_set.insert(5);
my_set.insert(3);
my_set.insert(7);
my_set.insert(1);
  1. 检查元素是否存在于 set 中:
if (my_set.find(3) != my_set.end()) {
    std::cout << "3 is in the set." << std::endl;
} else {
    std::cout << "3 is not in the set." << std::endl;
}
  1. 删除元素:
my_set.erase(3);
  1. 遍历 set 中的元素:
for (const auto& element : my_set) {
    std::cout << element << " ";
}
std::cout << std::endl;
  1. 获取 set 的大小和容量:
std::cout << "Size of the set: " << my_set.size() << std::endl;
std::cout << "Capacity of the set: " << my_set.capacity() << std::endl;
  1. 清空 set
my_set.clear();
  1. 销毁 set 对象:

set 对象离开其作用域时,它会自动被销毁。

以下是一个完整的示例程序:

#include 
#include 

int main() {
    std::set my_set;

    my_set.insert(5);
    my_set.insert(3);
    my_set.insert(7);
    my_set.insert(1);

    std::cout << "Size of the set: " << my_set.size() << std::endl;

    for (const auto& element : my_set) {
        std::cout << element << " ";
    }
    std::cout << std::endl;

    if (my_set.find(3) != my_set.end()) {
        std::cout << "3 is in the set." << std::endl;
    } else {
        std::cout << "3 is not in the set." << std::endl;
    }

    my_set.erase(3);

    if (my_set.find(3) != my_set.end()) {
        std::cout << "3 is in the set." << std::endl;
    } else {
        std::cout << "3 is not in the set." << std::endl;
    }

    return 0;
}

输出结果:

Size of the set: 4
1 5 7 3 
Size of the set: 3
1 5 7 

未经允许不得转载 » 本文链接:https://www.legongju.com/article/54033.html

相关推荐

  • c# configureawait 如何处理异步方法的返回值

    c# configureawait 如何处理异步方法的返回值

    在C#中,ConfigureAwait方法用于指示编译器在等待异步操作完成时不要将当前任务(Task)转移到线程池中的另一个线程。它通常与async和await关键字一起使用,以便...

  • c# configureawait 如何处理长时间运行的任务

    c# configureawait 如何处理长时间运行的任务

    在C#中,ConfigureAwait方法用于控制异步方法的执行方式。当你在一个异步方法中使用await关键字时,它会将该方法的剩余部分挂起,直到等待的操作完成。默认情况下...

  • c# configureawait 怎样处理异步方法的异常

    c# configureawait 怎样处理异步方法的异常

    在C#中,ConfigureAwait(false)方法用于指示编译器不要将当前异步方法链接到调用它的同步上下文。这可以提高性能,因为它允许异步方法在不同的线程上运行,而不需...

  • c# configureawait 适用于哪些编程场景

    c# configureawait 适用于哪些编程场景

    ConfigureAwait(false)在C#编程中有以下适用场景: 异步编程:在异步编程中,ConfigureAwait(false)用于将当前任务的上下文与调用线程分离。这在处理I/O密集型任...

  • Linux C++编译器能生成调试信息吗

    Linux C++编译器能生成调试信息吗

    是的,Linux上的C++编译器可以生成调试信息
    例如,使用g++编译器时,可以通过添加-g选项来生成调试信息:
    g++ -g -o my_program my_program.cpp 这里,...

  • Linux C++编译器怎样处理编译警告

    Linux C++编译器怎样处理编译警告

    在Linux系统中,C++编译器(如g++)会生成编译警告,以帮助开发者识别潜在的问题 使用-Wall选项:这个选项会开启所有常见的编译警告。例如,使用g++ -Wall myfil...

  • Linux C++编译器如何查看编译日志

    Linux C++编译器如何查看编译日志

    在Linux系统中,使用C++编译器(如g++或clang++)编译程序时,可以通过以下方法查看编译日志: 使用-v或--verbose选项:
    当使用g++或clang++编译程序时,添...

  • Linux C++编译器适用于哪些系统

    Linux C++编译器适用于哪些系统

    Linux C++编译器主要适用于多种Linux发行版,包括但不限于以下几种: Ubuntu
    Debian
    RHEL (Red Hat Enterprise Linux)
    CentOS
    Fedora
    ...