标签: c++ string dictionary shuffle
我正在写一些小字典+测验程序。我几乎准备好了一切,但现在谈到QUIZ我需要使用shuffle。我如何使用map(字符串,字符串)?
我有map<string, string> slowka;(它包含POL和ENG字对)。
map<string, string> slowka;
答案 0 :(得分:2)
不要随机播放map,随机播放std::vector个问题(可能是pair<string,string>)。原始地图仍然可用于检查测验答案。
map
std::vector
pair<string,string>