全栈成长之stack 队列 双端队列

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class Stack{
constrance(object){
this._list = [];
}

push(item){
this._list.push(item);
}

pop(){
return this._list.pop();
}

peek(){
return this.isEmpty()?this._list[this._list.length]: null
}

isEmpty(){
return this._list.length > 0
}

size(){
return this._list.length
}
}

队列

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Queue {
constrance(object){
this._list = [];
}

peek(item){
this._list.push(item);
}

pop(){
return this._list.unshift();
}

size(){
return this._list.length
}

isEmpty(){
return this.size() > 0;
}
}

双端队列

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class DeQueue{
constrance(object){
this._list = [];
}

add_Fpeek(item){
this._list.insert(0,item);
}

add_Lpeek(item){
this,_list.push(item)
}

Fpop(){
return this._list.unshift();
}

Lpop(){
return this._list.pop();
}

size(){
return this._list.length
}

isEmpty(){
return this.size() > 0;
}


}