02 2018 档案

摘要:WordMap类从分词库中读入分词 将分词存入unordered_map<std::string, int> 中 从文本中读入,对文本进行分词,分词方法详见 http://yangshangchuan.iteye.com/blog/2031813 以下是实现 样例程序 github:https:// 阅读全文
posted @ 2018-02-26 11:18 风轻云淡走天涯 阅读(537) 评论(0) 推荐(0)
摘要:1 class BaseClass 2 { 3 public: 4 int public_int; 5 private: 6 int private_int; 7 protected: 8 int protected_int; 9 }; 10 11 class DerivedClass :public BaseClass { 12 public: 13... 阅读全文
posted @ 2018-02-24 22:42 风轻云淡走天涯 阅读(474) 评论(0) 推荐(0)