c语言 unordered_map
时间: 2023-10-28 14:00:26 浏览: 132
C++中的哈希容器unordered_map使用示例
在C语言中,unordered_map是一个无序容器,它可以存储键值对。你可以使用unordered_map来快速查找指定键对应的值,它的查找效率比关联式容器高。你可以使用at()函数来查找指定键对应的值。例如,在下面的代码中,我们创建了一个unordered_map容器,并初始化了一些键值对。然后使用at()函数查找指定键"C语言教程"对应的值,最后输出结果为"http://c.biancheng.net/c/"。
```c++
#include <iostream>
#include <string>
#include <unordered_map>
using namespace std;
int main() {
unordered_map<string, string> my_uMap{
{"C语言教程","http://c.biancheng.net/c/"},
{"Python教程","http://c.biancheng.net/python/"},
{"Java教程","http://c.biancheng.net/java/"}
};
string str = my_uMap.at("C语言教程");
cout << "str = " << str << endl;
return 0;
}
```
此外,在C++11标准中,unordered_map模板类还增加了移动构造函数的功能。移动构造函数可以以右值引用的方式将临时unordered_map容器中存储的所有键值对复制给新建容器。例如,在下面的代码中,我们创建了一个返回临时unordered_map容器的函数retUmap(),然后使用移动构造函数创建了新的umap2容器。
```c++
#include <iostream>
#include <string>
#include <unordered_map>
using namespace std;
unordered_map<string, string> retUmap(){
unordered_map<string, string> tempUmap{
{"Python教程","http://c.biancheng.net/python/"},
{"Java教程","http://c.biancheng.net/java/"},
{"Linux教程","http://c.biancheng.net/linux/"}
};
return tempUmap;
}
int main() {
unordered_map<string, string> umap2(retUmap());
return 0;
}
```
另外,你还可以使用insert()函数将一个unordered_map容器中的键值对复制给另一个unordered_map容器。下面的代码演示了如何创建一个空的unordered_map容器otherumap,并将指定unordered_map容器umap中的键值对复制给otherumap容器,然后遍历otherumap容器中的键值对并输出。
```c++
#include <iostream>
#include <string>
#include <unordered_map>
using namespace std;
int main() {
unordered_map<string, string> umap{
{"STL教程","http://c.biancheng.net/stl/"},
{"Python教程","http://c.biancheng.net/python/"},
{"Java教程","http://c.biancheng.net/java/"}
};
unordered_map<string, string> otherumap;
unordered_map<string, string>::iterator first = umap.begin();
unordered_map<string, string>::iterator last = umap.end();
otherumap.insert(first, last);
for (auto iter = otherumap.begin(); iter != otherumap.end(); iter++) {
cout << iter->first << " " << iter->second << endl;
}
return 0;
}
```
这样,你就可以在C语言中使用unordered_map来存储和操作键值对了。
阅读全文