libstdc++
|
#include <hash_policy.hpp>
Public Types | |
enum | { external_load_access } |
typedef Size_Type | size_type |
Public Member Functions | |
cc_hash_max_collision_check_resize_trigger (float load=0.5) | |
float | get_load () const |
void | set_load (float load) |
void | swap (cc_hash_max_collision_check_resize_trigger< External_Load_Access, Size_Type > &other) |
Protected Member Functions | |
bool | is_grow_needed (size_type size, size_type num_entries) const |
bool | is_resize_needed () const |
void | notify_cleared () |
void | notify_erase_search_collision () |
void | notify_erase_search_end () |
void | notify_erase_search_start () |
void | notify_erased (size_type num_entries) |
void | notify_externally_resized (size_type new_size) |
void | notify_find_search_collision () |
void | notify_find_search_end () |
void | notify_find_search_start () |
void | notify_insert_search_collision () |
void | notify_insert_search_end () |
void | notify_insert_search_start () |
void | notify_inserted (size_type num_entries) |
void | notify_resized (size_type new_size) |
A resize trigger policy based on collision checks. It keeps the simulated load factor lower than some given load factor.
Definition at line 293 of file hash_policy.hpp.
typedef Size_Type __gnu_pbds::cc_hash_max_collision_check_resize_trigger< External_Load_Access, Size_Type >::size_type |
Definition at line 296 of file hash_policy.hpp.
anonymous enum |
Enumerator | |
---|---|
external_load_access | Specifies whether the load factor can be accessed externally. The two options have different trade-offs in terms of flexibility, genericity, and encapsulation. |
Definition at line 298 of file hash_policy.hpp.
__gnu_pbds::cc_hash_max_collision_check_resize_trigger< External_Load_Access, Size_Type >::cc_hash_max_collision_check_resize_trigger | ( | float | load = 0.5 | ) |
Default constructor, or constructor taking load, a __load factor which it will attempt to maintain.
|
inline |
Returns the current load.
|
inlineprotected |
Queries whether a grow is needed. This method is called only if this object indicated is needed.
|
inlineprotected |
Queries whether a resize is needed.
|
protected |
Notifies the table was cleared.
|
inlineprotected |
Notifies a search encountered a collision.
|
inlineprotected |
Notifies a search ended.
|
inlineprotected |
Notifies an erase search started.
|
inlineprotected |
Notifies an element was erased.
|
protected |
Notifies the table was resized externally.
|
inlineprotected |
Notifies a search encountered a collision.
|
inlineprotected |
Notifies a search ended.
|
inlineprotected |
Notifies a find search started.
|
inlineprotected |
Notifies a search encountered a collision.
|
inlineprotected |
Notifies a search ended.
|
inlineprotected |
Notifies an insert search started.
|
inlineprotected |
Notifies an element was inserted.
|
protected |
Notifies the table was resized as a result of this object's signifying that a resize is needed.
void __gnu_pbds::cc_hash_max_collision_check_resize_trigger< External_Load_Access, Size_Type >::set_load | ( | float | load | ) |
Sets the load; does not resize the container.