Javascript中的堆栈类
这是Stack类的完整实现-
示例
class Stack {
constructor(maxSize) { // Set default max size if not provided
if (isNaN(maxSize)) {
maxSize = 10;
}
this.maxSize = maxSize; // Init an array that'll contain the stack values.
this.container = [];
}
display() {
console.log(this.container);
}
isEmpty() {
return this.container.length === 0;
}
isFull() {
return this.container.length >= this.maxSize;
}
push(element) { // Check if stack is full
if (this.isFull()) {
console.log("堆栈溢出!") return;
}
this.container.push(element)
}
pop() { // Check if empty
if (this.isEmpty()) {
console.log("堆栈下溢!") return;
}
this.container.pop()
}
peek() {
if (isEmpty()) {
console.log("堆栈下溢!");
return;
}
return this.container[this.container.length - 1];
}
clear() {
this.container = [];
}
}热门推荐
10 小学毕业父母简短祝福语
11 幼儿生日祝福语模板简短
12 新娘妈妈的祝福语简短
13 邻居聚会祝福语大全简短
14 十条祝福语简短
15 给同学祝福语的简短
16 过年祝福语简短祝妈妈
17 祝女儿简短祝福语大全
18 恩师诗词祝福语简短大全