- Hands-On Data Structures and Algorithms with JavaScript
- Kashyap Mukkamala
- 422字
- 2021-06-30 19:12:08
Implementing stack methods
Implementing a stack is a rather easy task. We will follow a series of steps, where we will use the ES6 syntax, as follows:
- Define a constructor:
class Stack {
constructor() {
}
}
- Create a WeakMap() to store the stack items:
const sKey = {};
const items = new WeakMap();
class Stack {
constructor() {
items.set(sKey, [])
}
}
- Implement the methods described in the preceding API in the Stack class:
const sKey = {};
const items = new WeakMap();
class Stack {
constructor() {
items.set(sKey, []);
}
push(element) {
let stack = items.get(sKey);
stack.push(element);
}
pop() {
let stack = items.get(sKey)
return stack.pop()
}
peek() {
let stack = items.get(sKey);
return stack[stack.length - 1];
}
clear() {
items.set(sKey, []);
}
size() {
return items.get(sKey).length;
}
}
- So, the final implementation of the Stack will look as follows:
var Stack = (() => {
const sKey = {};
const items = new WeakMap();
class Stack {
constructor() {
items.set(sKey, []);
}
push(element) {
let stack = items.get(sKey);
stack.push(element);
}
pop() {
let stack = items.get(sKey);
return stack.pop();
}
peek() {
let stack = items.get(sKey);
return stack[stack.length - 1];
}
clear() {
items.set(sKey, []);
}
size() {
return items.get(sKey).length;
}
}
return Stack;
})();
This is an overarching implementation of a JavaScript stack, which by no means is comprehensive and can be changed based on the application's requirements. However, let's go through some of the principles employed in this implementation.
We have used a WeakMap() here, which as explained in the preceding paragraph, helps with internal memory management based on the reference to the stack items.
Another important thing to notice is that we have wrapped the Stack class inside an IIFE, so the constants items and sKey are available to the Stack class internally but are not exposed to the outside world. This is a well-known and debated feature of the current JS Class implementation, which does not allow class-level variables to be declared. TC39 essentially designed the ES6 Class in such a way that it should only define and declare its members, which are prototype methods in ES5. Also, since adding variables to prototypes is not the norm, the ability to create class-level variables has not been provided. However, one can still do the following:
constructor() {
this.sKey = {};
this.items = new WeakMap();
this.items.set(sKey, []);
}
However, this would make the items accessible also from outside our Stack methods, which is something that we want to avoid.
- The Complete Rust Programming Reference Guide
- 從零開始:數字圖像處理的編程基礎與應用
- 數據結構和算法基礎(Java語言實現)
- Getting Started with ResearchKit
- DevOps for Networking
- Ceph Cookbook
- NativeScript for Angular Mobile Development
- 機器人Python青少年編程開發實例
- 自制編程語言
- QGIS By Example
- C# 8.0核心技術指南(原書第8版)
- Flutter跨平臺開發入門與實戰
- Spring+Spring MVC+MyBatis從零開始學
- 零基礎學編程系列(全5冊)
- Java程序設計教程