พิจารณาคลาสสแต็กอย่างง่ายใน 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(); } peek() { if (isEmpty()) { console.log("Stack Underflow!"); return; } return this.container[this.container.length - 1]; } }
ที่นี่ เต็มแล้ว ฟังก์ชั่นเพียงตรวจสอบว่าความยาวของคอนเทนเนอร์เท่ากับหรือมากกว่า maxSize และส่งคืนตามนั้น ว่างเปล่า ฟังก์ชันตรวจสอบว่าขนาดของคอนเทนเนอร์เป็น 0 หรือไม่ ฟังก์ชัน Push และ Pop ใช้เพื่อเพิ่มและลบองค์ประกอบใหม่ออกจากสแต็กตามลำดับ
ในส่วนนี้ เราจะเพิ่มการดำเนินการ CLEAR ในคลาสนี้ เราสามารถล้างเนื้อหาได้เพียงแค่กำหนดองค์ประกอบคอนเทนเนอร์ใหม่ให้กับอาร์เรย์ที่ว่างเปล่า ตัวอย่างเช่น
ตัวอย่าง
clear() { this.container = []; }
คุณสามารถตรวจสอบว่าฟังก์ชันนี้ทำงานได้ดีหรือไม่โดยใช้ −
ตัวอย่าง
let s = new Stack(2); s.push(10); s.push(20); s.display(); s.clear(); s.display();
ผลลัพธ์
สิ่งนี้จะให้ผลลัพธ์ -
[10, 20] []