从 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); } }
此处,isFull 函数检查容器的长度是否等于或大于 maxSize,并相应返回。isEmpty 函数检查容器的长度是否为 0。Push 函数可用于将新元素添加到堆栈中。
在此部分,我们将在此类中添加 POP 操作。从堆栈中弹出元素表示从数组顶部移除元素。我们认为容器数组的末端是数组的顶部,因为我们将对它执行所有操作。因此,我们可以实现以下弹出函数 −
示例
pop() { // Check if empty if (this.isEmpty()) { console.log("Stack Underflow!"); return; } this.container.pop(); }
你可以使用以下代码检查此函数是否正常工作 −
示例
let s = new Stack(2); s.display(); s.pop(); s.push(20); s.push(30); s.pop(); s.display();
输出
这会产生如下输出 −
[] Stack Underflow! [ 20 ]
广告