Javascript 中的 Stack 类

web developmentfront end technologyjavascript

以下是 Stack 类的完整实现 −

示例

class Stack {
   constructor(maxSize) { // 如果未提供,则设置默认最大大小
      if (isNaN(maxSize)) {
         maxSize = 10;
      }
      this.maxSize = maxSize; // 初始化一个包含堆栈值的数组。
      this.container = [];
   }
 
    display() {
      console.log(this.container);
   }
 
    isEmpty() {
      return this.container.length === 0;
   }
 
    isFull() {
      return this.container.length >= this.maxSize;
   }
 
    push(element) { // 检查堆栈是否已满
      if (this.isFull()) {
         console.log("Stack Overflow!") return;
      }
      this.container.push(element)
   }
 
   pop() { // 检查是否为空
      if (this.isEmpty()) {
         console.log("Stack Underflow!") return;
      }
      this.container.pop()
   }
   peek() {
      if (isEmpty()) {
         console.log("Stack Underflow!");
         return;
      }
      return this.container[this.container.length - 1];
   }
   clear() {
      this.container = [];
   }
} 

相关文章