C++ 集合库 - set() 函数



描述

C++ 构造函数std::set::set()(范围构造函数)使用[first,last)范围内提到的元素数量构造一个集合容器,每个集合元素都由该范围内对应的元素构造。

声明

以下是来自std::set头文件的std::set::set()范围构造函数的声明。

C++98

template <class InputIterator>
 set (InputIterator first, InputIterator last,
      const key_compare& comp = key_compare(),
      const allocator_type& alloc = allocator_type());

C++11

template <class InputIterator>
   set (InputIterator first, InputIterator last,
        const key_compare& comp = key_compare(),
        const allocator_type& = allocator_type());

C++14

template <class InputIterator>
  set (InputIterator first, InputIterator last,
       const key_compare& comp = key_compare(),
       const allocator_type& = allocator_type());
template <class InputIterator>
  set (InputIterator first, InputIterator last,
       const allocator_type& = allocator_type());

参数

  • alloc - 输入迭代器到初始位置。

  • comp - 用于所有键比较的比较函数对象

  • first, last - 要从中复制的范围,它们是输入迭代器。此范围包括从first到last的元素,包括first指向的元素,但不包括last指向的元素。

返回值

构造函数从不返回值。

异常

如果抛出任何异常,此成员函数无效。但是,如果[first,last)指定的范围无效,则可能导致未定义的行为。

时间复杂度

N log(N),其中 N = std::distance(first, last);

否则在迭代器之间的距离上是线性的 (O(N)),如果元素已排序。

示例

以下示例显示了std::set::set()范围构造函数的使用。

#include <iostream>
#include <set>

using namespace std;

int main(void) {
   char vowels[] = {'a','e','i','o','u'};
  
   // Range Constructor
   std::set<char> t_set (vowels, vowels+5);  

   std::cout <> "Size of set container t_set is : " << t_set.size();
   return 0;
}

让我们编译并运行上述程序,这将产生以下结果:

Size of set container t_set is : 5
set.htm
广告