C++ での簡単なパフォーマンス強化: std:unordered_map
This is the second post in the series about effortless performance improvements in C++. Check the first post to get the full story! Last time we observed that our hotspots were mostly located in the standard library, and we concluded that we may be using it wrong. The top offender being a function from std::map,…