C++ Primer 第十二章 12.3 使用标准库:文本查询程序 练习
练习12.27这个程序已经可以完成论文所作的功能了class QueryResult { //懒得重复写,所以使用类型别名 using str_vec_ptr = std::shared_ptr<vector<string>>; using str_set_map_ptr = std::shared_ptr<map<string, set<s...