mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2026-03-13 15:21:15 +08:00
merge: Improved the complexity of dequeue O(n) to O(1) (#1005)
* feat: improved memoize function
used Map instead of object & used the JSON.stringfy method for generate a valid string as a key
* docs: modified documentation
* style: format with standard
* docs: modified stringify doc
* refactor: remove two repetition implementation
* feat: added validation, test codes
* chore: remove useless words
* feat: added types for jest
* chore: added link box
* feat: added new validation test casses & methods
* style: formated with standard
* feat: added parse method & test cases
* docs: added js docs
* chore: added default import export
* feat: imporved algorithm via replace method
* test: added two test cases
* feat: added jest type for suggestions
* feat: added `reduceRight` & `trim` method
* chore: added helper variable
* feat: added new rotation option
* Revert "chore: added helper variable"
This reverts commit 489544da0a.
* remove: yarn lock
* chore: fix grammer
* feat: used replace method & added test case
* feat: remove revert
* chore: added new line
* feat: updated the Queue array to linkedlist DS
* chore: fixed grammer
* resolve: removed capacity related codes, & updated test cases
* feat: added length dicrease code on dequeue
This commit is contained in:
@@ -1,56 +1,114 @@
|
|||||||
/* Queue
|
/* Queue
|
||||||
* A Queue is a data structure that allows you to add an element to the end of
|
* A Queue is a data structure that allows you to add an element to the end of
|
||||||
* a list and remove the item at the front. A queue follows a "First In First Out"
|
* a list and remove the item at the front. A queue follows a FIFO (First In First Out)
|
||||||
* system, where the first item to enter the queue is the first to be removed. This
|
* system, where the first item to enter the queue is the first to be removed,
|
||||||
* implementation uses an array to store the queue.
|
* All these operation complexities are O(1).
|
||||||
|
* This implementation following the linked list structure.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Functions: enqueue, dequeue, peek, view, length, empty
|
|
||||||
class Queue {
|
class Queue {
|
||||||
// constructor
|
#size
|
||||||
|
|
||||||
constructor () {
|
constructor () {
|
||||||
// This is the array representation of the queue
|
this.head = null
|
||||||
this.queue = []
|
this.tail = null
|
||||||
|
this.#size = 0
|
||||||
|
|
||||||
|
return Object.seal(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
// methods
|
get length () {
|
||||||
// Add a value to the end of the queue
|
return this.#size
|
||||||
enqueue (item) {
|
|
||||||
this.queue.push(item)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Removes the value at the front of the queue
|
/**
|
||||||
|
* @description - Add a value to the end of the queue
|
||||||
|
* @param {*} data
|
||||||
|
* @returns {number} - The current size of queue
|
||||||
|
*/
|
||||||
|
enqueue (data) {
|
||||||
|
const node = { data, next: null }
|
||||||
|
|
||||||
|
if (!this.head && !this.tail) {
|
||||||
|
this.head = node
|
||||||
|
this.tail = node
|
||||||
|
} else {
|
||||||
|
this.tail.next = node
|
||||||
|
this.tail = node
|
||||||
|
}
|
||||||
|
|
||||||
|
return ++this.#size
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description - Removes the value at the front of the queue
|
||||||
|
* @returns {*} - The first data of the queue
|
||||||
|
*/
|
||||||
dequeue () {
|
dequeue () {
|
||||||
if (this.empty()) {
|
if (this.isEmpty()) {
|
||||||
throw new Error('Queue is Empty')
|
throw new Error('Queue is Empty')
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.queue.shift() // remove the item at position 0 from the array and return it
|
const firstData = this.peekFirst()
|
||||||
|
|
||||||
|
this.head = this.head.next
|
||||||
|
|
||||||
|
if (!this.head) {
|
||||||
|
this.tail = null
|
||||||
|
}
|
||||||
|
|
||||||
|
this.#size--
|
||||||
|
|
||||||
|
return firstData
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return the length of the queue
|
/**
|
||||||
length () {
|
* @description - Return the item at the front of the queue
|
||||||
return this.queue.length
|
* @returns {*}
|
||||||
}
|
*/
|
||||||
|
peekFirst () {
|
||||||
// Return the item at the front of the queue
|
if (this.isEmpty()) {
|
||||||
peek () {
|
|
||||||
if (this.empty()) {
|
|
||||||
throw new Error('Queue is Empty')
|
throw new Error('Queue is Empty')
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.queue[0]
|
return this.head.data
|
||||||
}
|
}
|
||||||
|
|
||||||
// List all the items in the queue
|
/**
|
||||||
view (output = value => console.log(value)) {
|
* @description - Return the item at the tail of the queue
|
||||||
output(this.queue)
|
* @returns {*}
|
||||||
|
*/
|
||||||
|
peekLast () {
|
||||||
|
if (this.isEmpty()) {
|
||||||
|
throw new Error('Queue is Empty')
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.tail.data
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return Is queue empty ?
|
/**
|
||||||
empty () {
|
* @description - Return the array of Queue
|
||||||
return this.queue.length === 0
|
* @returns {Array<*>}
|
||||||
|
*/
|
||||||
|
toArray () {
|
||||||
|
const array = []
|
||||||
|
let node = this.head
|
||||||
|
|
||||||
|
while (node) {
|
||||||
|
array.push(node.data)
|
||||||
|
node = node.next
|
||||||
|
}
|
||||||
|
|
||||||
|
return array
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description - Return is queue empty or not
|
||||||
|
* @returns {boolean}
|
||||||
|
*/
|
||||||
|
isEmpty () {
|
||||||
|
return this.length === 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export { Queue }
|
export default Queue
|
||||||
|
|||||||
@@ -1,48 +1,46 @@
|
|||||||
import { Queue } from '../Queue'
|
import Queue from '../Queue'
|
||||||
|
|
||||||
describe('Queue', () => {
|
describe('Testing the Queue DS', () => {
|
||||||
it('Check enqueue/dequeue', () => {
|
const queue = new Queue()
|
||||||
const queue = new Queue()
|
|
||||||
queue.enqueue(1)
|
|
||||||
queue.enqueue(2)
|
|
||||||
queue.enqueue(8)
|
|
||||||
queue.enqueue(9)
|
|
||||||
|
|
||||||
|
it('Testing enqueue method', () => {
|
||||||
|
expect(queue.enqueue(1)).toBe(1)
|
||||||
|
expect(queue.enqueue(2)).toBe(2)
|
||||||
|
expect(queue.enqueue(8)).toBe(3)
|
||||||
|
expect(queue.enqueue(9)).toBe(4)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Testing length after enqueue', () => {
|
||||||
|
expect(queue.length).toBe(4)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Testing peekFirst & peekLast methods', () => {
|
||||||
|
expect(queue.peekFirst()).toBe(1)
|
||||||
|
expect(queue.peekLast()).toBe(9)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Testing toArray method', () => {
|
||||||
|
expect(queue.toArray()).toEqual([1, 2, 8, 9])
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Testing dequeue method', () => {
|
||||||
expect(queue.dequeue()).toBe(1)
|
expect(queue.dequeue()).toBe(1)
|
||||||
expect(queue.dequeue()).toBe(2)
|
expect(queue.dequeue()).toBe(2)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Check length', () => {
|
it('Testing length after dequeue', () => {
|
||||||
const queue = new Queue()
|
expect(queue.length).toBe(2)
|
||||||
|
|
||||||
queue.enqueue(1)
|
|
||||||
queue.enqueue(2)
|
|
||||||
queue.enqueue(8)
|
|
||||||
queue.enqueue(9)
|
|
||||||
|
|
||||||
expect(queue.length()).toBe(4)
|
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Check peek', () => {
|
it('Testing isEmpty method', () => {
|
||||||
const queue = new Queue()
|
const queue = new Queue()
|
||||||
|
expect(queue.isEmpty()).toBeTruthy()
|
||||||
|
|
||||||
queue.enqueue(1)
|
queue.enqueue(1)
|
||||||
queue.enqueue(2)
|
queue.enqueue(2)
|
||||||
queue.enqueue(8)
|
queue.enqueue(8)
|
||||||
queue.enqueue(9)
|
queue.enqueue(9)
|
||||||
|
|
||||||
expect(queue.peek()).toBe(1)
|
expect(queue.isEmpty()).toBeFalsy()
|
||||||
})
|
|
||||||
|
|
||||||
it('Check empty', () => {
|
|
||||||
const queue = new Queue()
|
|
||||||
expect(queue.empty()).toBeTruthy()
|
|
||||||
|
|
||||||
queue.enqueue(1)
|
|
||||||
queue.enqueue(2)
|
|
||||||
queue.enqueue(8)
|
|
||||||
queue.enqueue(9)
|
|
||||||
|
|
||||||
expect(queue.empty()).toBeFalsy()
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user