#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);
}
Problem2019Final03List重載,引用
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來娇未,“玉大人墨缘,你說我怎么就攤上這事。” “怎么了镊讼?”我有些...
- 文/不壞的土叔 我叫張陵宽涌,是天一觀的道長。 經(jīng)常有香客問我蝶棋,道長卸亮,這世上最難降的妖魔是什么? 我笑而不...
- 正文 為了忘掉前任玩裙,我火速辦了婚禮兼贸,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘献酗。我一直安慰自己寝受,他們只是感情好,可當(dāng)我...
- 文/花漫 我一把揭開白布罕偎。 她就那樣靜靜地躺著,像睡著了一般京闰。 火紅的嫁衣襯著肌膚如雪颜及。 梳的紋絲不亂的頭發(fā)上,一...
- 文/蒼蘭香墨 我猛地睜開眼犯祠,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了酌呆?” 一聲冷哼從身側(cè)響起衡载,我...
- 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎隙袁,沒想到半個(gè)月后痰娱,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡菩收,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年梨睁,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片娜饵。...
- 正文 年R本政府宣布,位于F島的核電站政鼠,受9級(jí)特大地震影響风瘦,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜公般,卻給世界環(huán)境...
- 文/蒙蒙 一万搔、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧官帘,春花似錦瞬雹、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至涌哲,卻和暖如春胖缤,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背阀圾。 一陣腳步聲響...
- 正文 我出身青樓涡真,卻偏偏與公主長得像,于是被迫代替她去往敵國和親肾筐。 傳聞我的和親對象是個(gè)殘疾皇子哆料,可洞房花燭夜當(dāng)晚...