在 Javascript 中从栈中读取元素


考虑一个 Javascript 中的简单栈类。

示例

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 = [];
   }

   // A method just to see the contents while we develop this class
   display() {
      console.log(this.container);
   }

   // Checking if the array is empty
   isEmpty() {
      return this.container.length === 0;
   }
   
   // Check if array is full
   isFull() {
      return this.container.length >= maxSize;
   }

   push(element) {
      // Check if stack is full
      if (this.isFull()) {
         console.log("Stack Overflow!");
         return;
      }
      this.container.push(element);
   }

   pop() {
      // Check if empty
      if (this.isEmpty()) {
         console.log("Stack Underflow!");
         return;
      }
      this.container.pop();
   }
}

这里的 isFull 函数只检查容器的长度是否等于或大于 maxSize,并相应返回。isEmpty 函数检查容器的大小是否为 0。Push 和 Pop 函数分别用于从栈中添加和移除新元素。

在本部分中,我们将向这个类中添加 PEEK 操作。栈的 Peeking 操作是指获取数组的顶部值。因此,我们可以按如下方式实现 peek 函数 −

peek() {
   if (isEmpty()) {
      console.log("Stack Underflow!");
      return;
   }
   return this.container[this.container.length - 1];
}

您可以使用以下代码检查此函数是否工作正常 −

示例

let s = new Stack(2);
s.peek();
s.push(10);
console.log(s.peek());

输出

这将给出输出 −

Stack Underflow!
10

更新于: 15-6 月-2020

543 次观看

开始你的 职业生涯

通过完成课程进行认证

开始
广告