#include <unordered_set>
#include <set>
std::unordered_set<int, std::hash<int>, std::equal_to<int>, std::allocator<std::set<int>>> hash_table;
이렇게 하면 hash_table에 삽입할때 해시 충돌 발생하면 red-black tree로 체이닝됨?
#include <unordered_set>
#include <set>
std::unordered_set<int, std::hash<int>, std::equal_to<int>, std::allocator<std::set<int>>> hash_table;
이렇게 하면 hash_table에 삽입할때 해시 충돌 발생하면 red-black tree로 체이닝됨?
아니면 해시 테이블이 red-black tree로 되는거임?
(해시테이블이 red-black tree면 효과없는데..)