Loading…
|
Translation uploaded |
|
|
String added in the repository |
|
Flags
safe-html, strict-same
Loading…
|
Translation uploaded |
|
|
String added in the repository |
|
With a simple bucket group layout, this is all that must be done:使用简单的桶组布局,只需执行以下操作:```c++auto const idx = get_bucket_idx(hash_function(key));node* n = buckets[idx]; //first load第一次加载if (n) { value_type const& v = *n; //second load第二次加载 // ...}}```