libstdc++
standard_policies.hpp
Go to the documentation of this file.
1// -*- C++ -*-
2
3// Copyright (C) 2005-2021 Free Software Foundation, Inc.
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the terms
7// of the GNU General Public License as published by the Free Software
8// Foundation; either version 3, or (at your option) any later
9// version.
10
11// This library is distributed in the hope that it will be useful, but
12// WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14// General Public License for more details.
15
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
19
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
24
25// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
26
27// Permission to use, copy, modify, sell, and distribute this software
28// is hereby granted without fee, provided that the above copyright
29// notice appears in all copies, and that both that copyright notice
30// and this permission notice appear in supporting documentation. None
31// of the above authors, nor IBM Haifa Research Laboratories, make any
32// representation about the suitability of this software for any
33// purpose. It is provided "as is" without express or implied
34// warranty.
35
36/**
37 * @file detail/standard_policies.hpp
38 * Contains standard policies for containers.
39 */
40
41#ifndef PB_DS_STANDARD_POLICIES_HPP
42#define PB_DS_STANDARD_POLICIES_HPP
43
44#include <memory>
51#include <tr1/functional>
52
53namespace __gnu_pbds
54{
55 namespace detail
56 {
57 /// Primary template, default_hash_fn.
58 template<typename Key>
60 {
61 /// Dispatched type.
62 typedef std::tr1::hash<Key> type;
63 };
64
65 /// Primary template, default_eq_fn.
66 template<typename Key>
68 {
69 /// Dispatched type.
71 };
72
73 /// Enumeration for default behavior of stored hash data.
74 enum
75 {
76 default_store_hash = false
77 };
78
79 /// Primary template, default_comb_hash_fn.
81 {
82 /// Dispatched type.
84 };
85
86 /// Primary template, default_resize_policy.
87 template<typename Comb_Hash_Fn>
89 {
90 private:
91 typedef typename Comb_Hash_Fn::size_type size_type;
92
94 typedef is_same<default_fn, Comb_Hash_Fn> same_type;
97 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
98 typedef typename cond_type::__type size_policy_type;
99
101
102 public:
103 /// Dispatched type.
104 typedef hash_standard_resize_policy<size_policy_type, trigger,
105 false, size_type> type;
106 };
107
108 /// Default update policy.
110 {
111 /// Dispatched type.
113 };
114
115 /// Primary template, default_probe_fn.
116 template<typename Comb_Probe_Fn>
118 {
119 private:
120 typedef typename Comb_Probe_Fn::size_type size_type;
122 typedef is_same<default_fn, Comb_Probe_Fn> same_type;
125 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
126
127 public:
128 /// Dispatched type.
129 typedef typename cond_type::__type type;
130 };
131
132
133 /// Primary template, default_trie_access_traits.
134 template<typename Key>
136
137#define __dtrie_alloc std::allocator<char>
138#define __dtrie_string std::basic_string<Char, Char_Traits, __dtrie_alloc>
139
140 /// Partial specialization, default_trie_access_traits.
141 template<typename Char, typename Char_Traits>
142 struct default_trie_access_traits<__dtrie_string>
143 {
144 private:
145 typedef __dtrie_string string_type;
146
147 public:
148 /// Dispatched type.
150 };
151
152#undef __dtrie_alloc
153#undef __dtrie_string
154
155 } // namespace detail
156} // namespace __gnu_pbds
157
158#endif // #ifndef PB_DS_STANDARD_POLICIES_HPP
GNU extensions for policy-based data structures for public use.
Managing sequences of characters and character-like objects.
One of the comparison functors.
Definition: stl_function.h:366
A probe sequence policy using fixed increments.
Definition: hash_policy.hpp:62
A probe sequence policy using square increments.
Definition: hash_policy.hpp:86
A mask range-hashing class (uses a bitmask).
A resize trigger policy based on a load check. It keeps the load factor between some load factors loa...
A size policy whose sequence of sizes form an exponential sequence (typically powers of 2.
A size policy whose sequence of sizes form a nearly-exponential sequence of primes.
A resize policy which delegates operations to size and trigger policies.
Primary template, default_hash_fn.
std::tr1::hash< Key > type
Dispatched type.
Primary template, default_eq_fn.
std::equal_to< Key > type
Dispatched type.
Primary template, default_comb_hash_fn.
direct_mask_range_hashing type
Dispatched type.
Primary template, default_resize_policy.
hash_standard_resize_policy< size_policy_type, trigger, false, size_type > type
Dispatched type.
lu_move_to_front_policy type
Dispatched type.
Primary template, default_probe_fn.
cond_type::__type type
Dispatched type.
Primary template, default_trie_access_traits.