c_cpp 在C ++中使用无序地图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 在C ++中使用无序地图相关的知识,希望对你有一定的参考价值。

#include <unordered_map>
#include <string>

int main(){
    std::unordered_map<std::string, int> dict;
    dict["foo"] = 3;
    dict["hoo"] = 4;
  for (auto& x: dict) {
    std::cout << x.first << ": " << x.second << std::endl;
  }
    return 0;
}

/*hoo: 4
foo: 3*/

以上是关于c_cpp 在C ++中使用无序地图的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 在C中使用枚举

如何在 Swift 中使用 Apple 地图 - 你必须使用 C 还是 Swift 可以?

c_cpp 使用C ++库函数使用Suffix Array在文本中搜索模式

c_cpp 在c中使用strtod的例子

c_cpp 在C ++中使用初始化列表

c_cpp 使用libcurl在C中获取html