해시맵

hash map - C++ STL
예시 #include #include int main() { std::unordered_map hashmap; //insert hashmap.insert({"key1","value1"}); hashmap.insert({"key2","value2"}); hashmap.insert({"key3","value3"}); //find std::cout first
예시 #include #include int main() { std::unordered_map hashmap; //insert hashmap.insert({"key1","value1"}); hashmap.insert({"key2","value2"}); hashmap.insert({"key3","value3"}); //find std::cout first