c++哈希表count
时间: 2023-08-17 12:36:11 浏览: 234
哈希表 c++
3星 · 编辑精心推荐
在C++中,哈希表的计数操作可以使用STL中的`std::unordered_map`实现。该容器提供了一个`count`函数,可以用于返回指定键值的元素在容器中出现的次数。例如,以下代码演示了如何使用`std::unordered_map`计算字符串中每个字符出现的次数:
```c++
#include <iostream>
#include <unordered_map>
#include <string>
int main() {
std::string str = "hello world";
std::unordered_map<char, int> charCount;
// 计算每个字符出现的次数
for (char c : str) {
charCount[c]++;
}
// 输出结果
for (auto& elem : charCount) {
std::cout << elem.first << ": " << elem.second << std::endl;
}
return 0;
}
```
在上面的代码中,我们先定义了一个`std::unordered_map`对象`charCount`,用于存储每个字符出现的次数。然后,我们遍历字符串中的每个字符,并通过`charCount[c]++`将该字符出现次数加1。最后,我们遍历`charCount`中的每个键值对,输出每个字符及其出现次数。
阅读全文