当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Set set()用法及代码示例



描述

C++ 构造函数std::set::set()(Range Constructor) 构造一个集合容器,其中包含与范围 [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

相关用法


注:本文由纯净天空筛选整理自 C++ Set Library - set() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。