c/c++ vector,map,set,智能指针,综合运用的小例子

2021-06-16 03:03

阅读:408

标签:friend   smart   using   template   pre   nes   文件   eset   出现   

标准库,智能指针,综合运用的小例子

功能说明:查询单词在文件中出现的次数,如果在同一行出现多次,只算一次。

比如查询单词:你好

输出的结果:

你好 出现了:2次
(行号 2)xxxxxxx 你好
(行号 3)bbb ccc 你好 xxxxx

注意点:代码的46行,必须使用引用。

//非常重要,必须用引用,要不然就会拷贝一个新的set给lines,不是map里的set
auto &lines = wm[word];//lines是shared_ptr

代码:

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;


class QueryResult{
  friend ostream& print(ostream&, const QueryResult&);
public:
  using line_no = vector::size_type;
  QueryResult(string s, shared_ptr> p,
              shared_ptr> f):
    sought(s), lines(p), file(f){}
private:
  string sought;//查询的单词                                                    
  shared_ptr> lines;//出现的行号                                   
  shared_ptr> file;
};
//QueryResult的友元函数                                                         
ostream& print(ostream& os, const QueryResult& qr){
  os size() cbegin() + num) ::size_type;
  TextQuery(ifstream& is) : file(new vector){
    string text;
    while(getline(is, text)){//读文件的每一行                                   
      file->push_back(text);
      int n = file->size() - 1;//当前行号                                       
      istringstream line(text);//将行文本分解为单词                             
      string word;
      while(line >> word){
        //非常重要,必须用引用,要不然就会拷贝一个新的set给lines,不是原来的    
        auto &lines = wm[word];//lines是shared_ptr                              
        if(!lines)
          lines.reset(new set);
        lines->insert(n);
      }
    }
  }
  QueryResult query(const string &sought) const{
    //如果没有找到sought,返回指向此set的一个智能指针                           
    static shared_ptr> nodata(new set);
    auto ret = wm.find(sought);
    if(ret == wm.end()){
      return QueryResult(sought, nodata, file);//没有找到                       
    }
    else{
      return QueryResult(sought, ret->second, file);
    }
  }
private:
  shared_ptr> file;
  map>> wm;
};
int main(){
  ifstream infile("/home/ys/c++_template/search_text");
  TextQuery tq(infile);
  while(true){
    cout > s) || s == "q")break;
    print(cout, tq.query(s)) 

github完整代码

c/c++ 学习互助QQ群:877684253

技术分享图片

本人微信:xiaoshitou5854

c/c++ vector,map,set,智能指针,综合运用的小例子

标签:friend   smart   using   template   pre   nes   文件   eset   出现   

原文地址:https://www.cnblogs.com/xiaoshiwang/p/9728555.html


评论


亲,登录后才可以留言!