尝试打印 unordered_map
Posted
技术标签:
【中文标题】尝试打印 unordered_map【英文标题】:Trying to print an unordered_map 【发布时间】:2016-03-18 18:12:46 【问题描述】:我正在编写一个简单的程序来查找字谜。我正在使用一个哈希表,其中已排序的字符串作为键,未排序的字符串作为值。当我 (散列图)时,它给了我这个错误。
错误 1 错误 C2675: 一元 '++' : 'std::string' 没有定义这个 运算符或转换为预定义可接受的类型 运算符 c:\program files (x86)\microsoft visual studio 12.0\vc\include\xhash 672 1
#include <iostream>
#include <list>
#include <cstdlib>
#include <map>
#include <string>
#include <vector>
#include <unordered_map>
#include <algorithm>
#include <cstring>
void Anagrams(std::vector<std::string> &v)
std::unordered_map<std::string, std::string> wordTable;
char sortedString[256];
for (std::string tmp : v)
strcpy(sortedString, tmp.c_str());
std::sort(sortedString, sortedString + tmp.size());
std::string backToString(sortedString);
wordTable.insert(backToString, tmp);
std::cout << "Map contains" << std::endl;
std::cout << "mymap's buckets contain:\n";
for (unsigned i = 0; i < wordTable.bucket_count(); ++i)
std::cout << "bucket #" << i << " contains:";
for (auto local_it = wordTable.begin(i); local_it != wordTable.end(i); ++local_it)
std::cout << " " << local_it->first << ":" << local_it->second;
std::cout << std::endl;
int main()
std::vector<std::string> words "debitcard", "badcredit", "cat", "act", "evils", "elvis" ;
Anagrams(words);
return 0;
由于某种原因,它认为迭代器“local_it”是一个字符串。有人可以帮忙吗?
【问题讨论】:
char sortedString[256];
为什么要使用 char 数组?只需使用std::string
。
好点。我没有意识到这一点。谢谢
【参考方案1】:
问题在于std::unorderd_map::insert() 函数采用std::pair<key, value>
,而不是key, value
:
wordTable.insert(std::make_pair(backToString, tmp));
【讨论】:
以上是关于尝试打印 unordered_map的主要内容,如果未能解决你的问题,请参考以下文章
W7系统,显示文件和打印共享资源处于联机状态,但未对连接尝试做出响应!
我打印图片 X。然后我尝试打印图片 Y,但它再次打印图片 X,然后是 Y。请问,如何从 Python 列表中删除图片 X?