Problem2019Final03List重載,引用

#pragma once
#include <list>
#include <memory>
#include <iostream>
using namespace std;

class MyList
{
private:
    std::shared_ptr< std::list<int> > pt; // a pointer to the real container
    std::list<int>::iterator left, right; // the position of slice is [left, right). 'left' is included, 'right' is excluded.

    std::list<int>::iterator forward(int pos) const{
        // count from 'left', find the element at position 'pos'.
        auto now = left;
        while(pos--) now++;
        return now;
    }
    
    std::list<int>::iterator backward(int pos) const{
        auto now = right;
        while (--pos) {
            now --;
        }
        return now;
    }

public:
    MyList(): pt(new std::list<int>()){
        left = pt->begin();
        right = pt->end();
        // Actually, left = right = pt->end(), because there is no element in the list.
    }
    
    MyList(std::shared_ptr< std::list<int> > p,std::list<int>::iterator l, std::list<int>::iterator r){
        pt = p;
        left = l;
        right = r;
    }
    
    MyList(const MyList& src){
        left = src.pt->begin();
        right = src.pt->end();
    }

//    MyList(const MyList& src, int a, int b){
//        left = src.forward(a);
//        right = src.backward(b);
//    }

    void append(int i){
        pt->insert(right, i);
        if(left==right){
            left=pt->begin();
            right=pt->end();
        }
        //insert i just before 'right'. 'right' and 'left' will be still valid (because we use list, not vector).
        // DEBUG !! Why I can't insert i??
    }

    int& operator[](int pos) const{
        return *forward(pos); // access the element at the 'pos'
    }

    ostream& output(std::ostream &out) const{
        out << "[";
        if (left != right){
            auto now = left;
            out << *now;
            now ++;
            for(; now != right; now++){
                out << "," << *now;
            }
        }
        out << "]";
        return out;
    }
    
    MyList operator()(int a, int b) const{
//        cerr<<"call operator()(int,int)const"<<endl;
        auto l = forward(a);
        auto r = forward(b);
        MyList list = MyList(this->pt,l,r);
        return list;
    }
    
    friend ostream& operator<<(ostream& out,const MyList& src);
};

ostream& operator<<(ostream& out,const MyList& src){
    return src.output(out);
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末条摸,一起剝皮案震驚了整個(gè)濱河市媳荒,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌岸浑,老刑警劉巖陷猫,帶你破解...
    沈念sama閱讀 212,816評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件秫舌,死亡現(xiàn)場離奇詭異,居然都是意外死亡绣檬,警方通過查閱死者的電腦和手機(jī)足陨,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來娇未,“玉大人墨缘,你說我怎么就攤上這事。” “怎么了镊讼?”我有些...
    開封第一講書人閱讀 158,300評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵宽涌,是天一觀的道長。 經(jīng)常有香客問我蝶棋,道長卸亮,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,780評(píng)論 1 285
  • 正文 為了忘掉前任玩裙,我火速辦了婚禮兼贸,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘献酗。我一直安慰自己寝受,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,890評(píng)論 6 385
  • 文/花漫 我一把揭開白布罕偎。 她就那樣靜靜地躺著,像睡著了一般京闰。 火紅的嫁衣襯著肌膚如雪颜及。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,084評(píng)論 1 291
  • 那天蹂楣,我揣著相機(jī)與錄音俏站,去河邊找鬼。 笑死痊土,一個(gè)胖子當(dāng)著我的面吹牛肄扎,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播赁酝,決...
    沈念sama閱讀 39,151評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼犯祠,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了酌呆?” 一聲冷哼從身側(cè)響起衡载,我...
    開封第一講書人閱讀 37,912評(píng)論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎隙袁,沒想到半個(gè)月后痰娱,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,355評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡菩收,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,666評(píng)論 2 327
  • 正文 我和宋清朗相戀三年梨睁,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片娜饵。...
    茶點(diǎn)故事閱讀 38,809評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡坡贺,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情拴念,我是刑警寧澤钧萍,帶...
    沈念sama閱讀 34,504評(píng)論 4 334
  • 正文 年R本政府宣布,位于F島的核電站政鼠,受9級(jí)特大地震影響风瘦,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜公般,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,150評(píng)論 3 317
  • 文/蒙蒙 一万搔、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧官帘,春花似錦瞬雹、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至涌哲,卻和暖如春胖缤,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背阀圾。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評(píng)論 1 267
  • 我被黑心中介騙來泰國打工哪廓, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人初烘。 一個(gè)月前我還...
    沈念sama閱讀 46,628評(píng)論 2 362
  • 正文 我出身青樓涡真,卻偏偏與公主長得像,于是被迫代替她去往敵國和親肾筐。 傳聞我的和親對象是個(gè)殘疾皇子哆料,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,724評(píng)論 2 351