命名空间
变体
操作

std::flat_map<Key,T,Compare,KeyContainer,MappedContainer>::flat_map

来自 cppreference.cn
< cpp‎ | 容器‎ | flat map
 
 
 
 
flat_map()
    : flat_map(key_compare()) { }
(1) (C++23 起)
template< class Allocator >
flat_map( const flat_map&, const Allocator& alloc );
(2) (C++23 起)
template< class Allocator >
flat_map( flat_map&&, const Allocator& alloc );
(3) (C++23 起)
flat_map( key_container_type key_cont, mapped_container_type mapped_cont,
          const key_compare& comp = key_compare() );
(4) (C++23 起)
template< class Allocator >

flat_map( const key_container_type& key_cont,
          const mapped_container_type& mapped_cont,

          const Allocator& alloc );
(5) (C++23 起)
template< class Allocator >

flat_map( const key_container_type& key_cont,
          const mapped_container_type& mapped_cont,

          const key_compare& comp, const Allocator& alloc );
(6) (C++23 起)
flat_map( std::sorted_unique_t, key_container_type key_cont,

          mapped_container_type mapped_cont,

          const key_compare& comp = key_compare() );
(7) (C++23 起)
template< class Allocator >

flat_map( std::sorted_unique_t, const key_container_type& key_cont,

          const mapped_container_type& mapped_cont, const Allocator& alloc );
(8) (C++23 起)
template< class Allocator >

flat_map( std::sorted_unique_t, const key_container_type& key_cont,
          const mapped_container_type& mapped_cont,

          const key_compare& comp, const Allocator& alloc );
(9) (C++23 起)
explicit flat_map( const key_compare& comp )
    : c(), compare(comp) { }
(10) (C++23 起)
template< class Allocator >
flat_map( const key_compare& comp, const Allocator& alloc );
(11) (C++23 起)
template< class Allocator >
explicit flat_map( const Allocator& alloc );
(12) (C++23 起)
template< class InputIter >

flat_map( InputIter first, InputIter last,
          const key_compare& comp = key_compare() )

    : c(), compare(comp);
(13) (C++23 起)
template< class InputIter, class Allocator >

flat_map( InputIter first, InputIter last,

          const key_compare& comp, const Allocator& alloc );
(14) (C++23 起)
template< class InputIter, class Allocator >
flat_map( InputIter first, InputIter last, const Allocator& alloc );
(15) (C++23 起)
template< container-compatible-range<value_type> R >

flat_map( std::from_range_t, R&& rg, const key_compare& comp )

    : flat_map(comp);
(16) (C++23 起)
template< container-compatible-range<value_type> R >

flat_map( std::from_range_t fr, R&& rg )

    : flat_map(fr, std::forward<R>(rg), key_compare()) { }
(17) (C++23 起)
template< container-compatible-range<value_type> R, class Allocator >
flat_map( std::from_range_t, R&& rg, const Allocator& alloc );
(18) (C++23 起)
template< container-compatible-range<value_type> R, class Allocator >

flat_map( std::from_range_t, R&& rg, const key_compare& comp,

          const Allocator& alloc );
(19) (C++23 起)
template< class InputIter >

flat_map( std::sorted_unique_t s, InputIter first, InputIter last,
          const key_compare& comp = key_compare() )

    : c(), compare(comp);
(20) (C++23 起)
template< class InputIter, class Allocator >

flat_map( std::sorted_unique_t s, InputIter first, InputIter last,

          const key_compare& comp, const Allocator& alloc );
(21) (C++23 起)
template< class InputIter, class Allocator >

flat_map( std::sorted_unique_t s, InputIter first, InputIter last,

          const Allocator& alloc );
(22) (C++23 起)
flat_map( std::initializer_list<value_type> init,

          const key_compare& comp = key_compare() )

    : flat_map(init.begin(), init.end(), comp) { }
(23) (C++23 起)
template< class Allocator >

flat_map( std::initializer_list<value_type> init, const key_compare& comp,

          const Allocator& alloc );
(24) (C++23 起)
template< class Allocator >
flat_map( std::initializer_list<value_type> init, const Allocator& alloc );
(25) (C++23 起)
flat_map( std::sorted_unique_t s, std::initializer_list<value_type> init,

          const key_compare& comp = key_compare() )

    : flat_map(s, init.begin(), init.end(), comp) { }
(26) (C++23 起)
template< class Allocator >

flat_map( std::sorted_unique_t s, std::initializer_list<value_type> init,

          const key_compare& comp, const Allocator& alloc );
(27) (C++23 起)
template< class Allocator >

flat_map( std::sorted_unique_t s, std::initializer_list<value_type> init,

          const Allocator& alloc );
(28) (C++23 起)

构造新的容器适配器,可使用各种数据源,并可选择使用用户提供的比较函数对象 comp 和/或分配器 alloc

1) 默认构造函数。构造一个空的容器适配器。
2) 复制构造函数。使用 other.c 的内容副本构造 c,并使用 other.compare 构造 compare。参见下文的分配器使用说明
3) 移动构造函数。使用移动语义构造具有 other 内容的容器适配器。参见下文的分配器使用说明
4) 首先,使用 std::move(key_cont) 初始化 c.keys,使用 std::move(mapped_cont) 初始化 c.values,并使用 comp 初始化 compare。然后,根据 value_comp() 对底层范围 [begin()end()) 进行排序。最后,删除重复元素,如同执行:
auto zv = views::zip(c.keys, c.values);
auto it = ranges::unique(zv, key_equiv(compare)).begin();
auto dist = distance(zv.begin(), it);
c.keys.erase(c.keys.begin() + dist, c.keys.end());
c.values.erase(c.values.begin() + dist, c.values.end());
.
5)(4) 相同,等价于 flat_map(key_cont, mapped_cont);。参见下文的分配器使用说明
6)(4) 相同,等价于 flat_map(key_cont, mapped_cont, comp);。参见下文的分配器使用说明
7) 使用 std::move(key_cont) 初始化 c.keys,使用 std::move(mapped_cont) 初始化 c.values,并使用 comp 初始化 compare
8)(7) 相同,等价于 flat_map(s, key_cont, mapped_cont);。参见下文的分配器使用说明
9)(7) 相同,等价于 flat_map(s, key_cont, mapped_cont, comp);。参见下文的分配器使用说明
10) 构造一个空的容器适配器。
11,12) 构造一个空的容器适配器。参见下方的分配器使用说明
13) 使用范围 [firstlast) 的内容构造容器适配器,等价于 insert(first, last);
14,15)(13)。参见下方的分配器使用说明
16) 使用范围 rg 的内容构造容器适配器。首先,使用 (10) 作为委托构造函数。然后,使用 rg 的内容初始化 c,如同执行 insert_range(std::forward<R>(rg));
17)(16),使用其作为委托构造函数
18,19)(16)。参见下方的分配器使用说明
20) 使用范围 [firstlast) 的内容构造底层容器,如同执行 insert(first, last)
21,22)(20)。参见下方的分配器使用说明
23) 初始化列表构造函数。使用初始化列表 init 的内容构造底层容器,使用 (13) 作为委托构造函数
24,25)(23)。参见下方的分配器使用说明
26) 初始化列表构造函数。使用初始化列表 init 的内容构造底层容器,使用 (20) 作为委托构造函数
27,28)(26)。参见下方的分配器使用说明

对于重载 (13-15,20-22) 的注意事项:如果 [firstlast) 不是有效范围,则行为未定义。

对于重载 (4-6,13-19,23-25) 的注意事项:如果范围中的多个元素的键比较相等,则插入哪个元素是未指定的(待解决 LWG2844)。

目录

[编辑] 分配器使用说明

构造函数 (2,3,5,6,8,9,11,12,14,15,17,19,21,22,24,25,27,28) 等效于相应的非分配器构造函数,不同之处在于底层容器 c.keysc.values 使用使用分配器构造。这些重载仅当 std::uses_allocator_v<container_type, Allocator>true 时才参与重载决议。

[编辑] 参数

key_cont - 用作初始化底层键容器的源容器
mapped_cont - 用作初始化底层值容器的源容器
其他 - 另一个 flat_map,用作初始化底层容器元素的源
alloc - 用于底层容器所有内存分配的分配器
comp - 一个用于所有键比较的函数对象
first, last - 定义要复制的元素的源 范围 的迭代器对
init - 初始化列表,用于初始化底层容器的元素
rg - 容器兼容范围(即,其元素可转换为 value_typeinput_range),用作初始化底层容器的源
fr - 一个消歧标签,指示包含的成员应进行范围构造
s - 消歧标签,指示输入序列相对于 value_comp() 已排序且所有元素唯一
类型要求
-
InputIt 必须满足 LegacyInputIterator 的要求。
-
Compare 必须满足 Compare 的要求。
-
Allocator 必须满足 Allocator 的要求。

[编辑] 复杂度

1) 常数。
2)other 的大小呈线性关系。
3) 与包装容器的相应移动构造函数相同,即与 cont 的大小呈常数或线性关系。
4-6) 如果 cont 相对于 value_comp() 已排序,则复杂度为 N 的线性时间,否则为 𝓞(N·log(N)),其中 N 是此调用前 key_cont.size() 的值。
7-9) 与包装容器的相应移动构造函数相同,即与 cont 的大小呈常数或线性关系。
10-12) 常数。
13-15) 如果输入范围 [firstlast) 相对于 value_comp() 已排序,则复杂度为 N 的线性时间,否则为 𝓞(N·log(N)),其中 N 是此调用前 key_cont.size() 的值。
16-19) 如果输入范围 rg 相对于 value_comp() 已排序,则复杂度为 N 的线性时间,否则为 𝓞(N·log(N)),其中 N 是此调用前 key_cont.size() 的值。
20-22) 复杂度与 [firstlast) 的大小呈线性关系。
23-25) 如果 init 的元素相对于 value_comp() 已排序,则复杂度为 N 的线性时间,否则为 𝓞(N·log(N)),其中 N 是此调用前 key_cont.size() 的值。
26-28)init 的大小呈线性关系。

[编辑] 异常

调用 Allocator::allocate 可能会抛出异常。

[编辑] 注意

在容器移动构造(重载 (3))之后,指向 other 的引用、指针和迭代器(除了尾迭代器)仍然有效,但现在指向 *this 中的元素。当前的标准通过 [container.reqmts]/67 中的一揽子声明提供此保证,并且通过 LWG issue 2321 正在考虑更直接的保证。

[编辑] 示例

[编辑] 参阅

向容器适配器赋值
(public member function) [编辑]