C++ Primer 第十二章 12.3 使用标准库:文本查询程序 练习
练习 12.27 这个程序已经可以完成论文所作的功能了 class QueryResult { //懒得重复写,所以使用类型别名 using str_vec_ptr = std::shared_ptr; using str_set_map_ptr = std::shared_ptr>; using str_map_ptr = std::shared_ptr; friend ostream& print(ostream& out, const QueryResult& result); public: QueryResul
暂无评论