Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update hash_table8.hpp #48

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hash_table8.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1464,7 +1464,7 @@ class HashMap
//kick out bucket and find empty to occpuy
//it will break the origin link and relink again.
//before: main_bucket-->prev_bucket --> bucket --> next_bucket
//atfer : main_bucket-->prev_bucket --> (removed)--> new_bucket--> next_bucket
//after : main_bucket-->prev_bucket --> (removed)--> new_bucket--> next_bucket
size_type kickout_bucket(const size_type kmain, const size_type bucket) noexcept
{
const auto next_bucket = _index[bucket].next;
Expand Down