文本查询-My(StrVec提供类间共享元素的能力?。?/h1>
// 文本查询程序-My.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include<iostream>
#include<fstream>
#include<sstream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<memory>
#include<initializer_list>

using namespace std;

class StrVec
{
    using size_type = vector<string>::size_type;
public:
    StrVec():data(new vector<string>()){}       //默认初始化!
    StrVec(initializer_list<string> il):data(make_shared<vector<string>>(il)) {} //il就这么用!

    //StrVec(const StrVec &rh):data(copy_shared(rh)){}智能指针与拷贝构造函数、拷贝赋值、移动构造函数、移动赋值的使用样本?》
    ~StrVec()=default;

    void push_back(const string &s);
    void pop_back();

    size_type size()const { return data->size(); }
    bool empty()const { return data->empty(); }

    string &front();
    string &back();
    string& operator[] (const size_type &i);
    string& operator[] (const size_type &i) const;

    explicit operator bool()const { return data->size() > 0 ? true : false; }

private:
    shared_ptr<vector<string>> data;
    void check(unsigned i)      //检查data[i]是否越界?
    {
        if (i >= data->size())
            throw out_of_range("Out_of_range!");
    }
    shared_ptr<vector<string>> copy_shared(const StrVec &rh)
    {
        shared_ptr<vector<string>> ret;
        auto beg = ret->begin();
        uninitialized_copy(rh.data->cbegin(), rh.data->cend(), beg++);
        return ret;
    }
};

void StrVec::push_back(const string &s)
{
    data->push_back(s);
}
void StrVec::pop_back()
{
    check(0);
    data->pop_back();
}
string& StrVec::front()
{
    check(0);
    return data->at(0);
}
string& StrVec::back()
{
    check(0);
    return data->at(data->size()-1);
}
string& StrVec::operator[](const size_type &i)
{
    check(i);
    return data->at(i);
}
string& StrVec::operator[] (const size_type &i) const   //区分StrVec本身,const版本和非const版本!
{
    //check(i);             //check暂时没有定义const版本,故在此舍弃!
    return data->at(i);
}


class QueryR
{
public:
    QueryR(const string &s, shared_ptr<map<string, set<unsigned>>> l, StrVec f) :word(s), linenu(l), file(f) {}
    ~QueryR() = default;

    friend ostream& operator<<(ostream &os, QueryR rh);
private:
    string word;
    shared_ptr<map<string, set<unsigned>>> linenu;
    StrVec file;
};
ostream& operator<<(ostream &os, QueryR rh)
{
    os << rh.word <<" occurs " << rh.linenu->at(rh.word).size() << " times" << endl;
    for (auto &r : rh.linenu->at(rh.word))
    {
        os << "\t(line " << r+1 << ")" << rh.file[r]<<endl;//       const QueryR,其file不能使用[]???
    }
    return os;
}

class Text
{
public:
    Text(const string &filename):linenu(make_shared<map<string,set<unsigned>>>()) { read(filename); }
    ~Text()=default;

    QueryR query(const string &s);

private:
    shared_ptr<map<string, set<unsigned>>> linenu;      //要么在构造函数中绑定,要么在函数中绑定内存!
    StrVec file;                                        //由类自己决定
    void read(const string &filename);
};

void Text::read(const string &filename)
{
    ifstream f(filename);
    if (f)
    {
        string tmp;
        unsigned row = 0;                       //单词所在的行号
        while (getline(f,tmp))
        {
            istringstream line(tmp);
            string word;
            while (line>>word)
            {
                if(linenu->find(word)==linenu->cend())
                    (*linenu)[word];            //如果不存在,则创建pair<string,set<unsigned>>
                (*linenu)[word].insert(row);    //单词word,插入行号row
            }
            file.push_back(tmp);                //保存每一行的tmp
            row = row + 1;
        }
    }
    f.close();
}

QueryR Text::query(const string &s)
{
    if (linenu->find(s) != linenu->cend())
        return QueryR(s, linenu, file);
    else
        return QueryR(s, nullptr, file);
}




int main()
{
    string filename = "C:\\Users\\winack\\Documents\\Visual Studio 2017\\Projects\\文本查询程序-My\\123.txt";
    Text info(filename);
    cout << info.query("is");

    StrVec sv;
    sv.push_back("asdfg");
    const StrVec &ssv = sv;
    cout <<"非const版本: "<<sv[0]<<" && "<<"是const版本: "<< ssv[0] << endl;

    return 0;
}
最后编辑于
?著作权归作者所有,转载或内容合作请联系作者

  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,992评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,212评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事?!?“怎么了?”我有些...
    开封第一讲书人阅读 159,535评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,197评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,310评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,383评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,409评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,191评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,621评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,910评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,084评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,763评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,403评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,083评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,318评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,946评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,967评论 2 351

推荐阅读更多精彩内容