DEV Community

Cover image for Queue Data Structure in Javascript
Data Structures
Data Structures

Posted on

20 6

Queue Data Structure in Javascript

Queue is a linear list of elements in which deletion of an element can take place at one end, called Front and insertion can take place at the other end, called Rear

The first element in the queue will be the first one to be removed from the list. Queues are also called FIFO(FIRST IN FIRST OUT).

Think of a queue just like a line. It is horizontal. The first one in the line/queue is the first one out. The line starts on the left and ends on the right. Hence you would use pop(), to remove the "last" element of the array.

Applications of the Queue

  • Serving request on a single shared resource, eg - PointerEvent, CPU task scheduling, etc,
  • In real life, call center phone system(people should wait in and hold until the service representative is free)
  • Handling of interrupts in real-time systems.

Basic Operations

The basic operation that can performed are Enqueue, dequeue and display.

Enqueue(terminology for Insertion) - add an item to the queue.

dequeue(terminology for Deletion) - remove an item from the queue

IsEmpty - Checks if the queue is empty.

IsFull - Checks if the queue is full.

Peek - Gets the element at the front of the queue without removing it.

How to use a Queues

Create a queue data structure. The queue should be a class with methods enqueue and dequeue.Adding to the queue should store an element until
it is removed.

Functions to be implemented

enqueue(item) 
dequeue() 
front() 
isEmpty()

Examples Usage

const q = new Queue();
q.enqueue(1);
q.dequeue(); // returns 1;
// Queue class 
class Queue {
  constructor() {
    // Array is used to implement a Queue
    this.data = [];
  }

  // Functions to be implemented 
  // enqueue(item) 
  // dequeue() 
  // front() 
  // isEmpty() 

  // Adds an element to the queue
  enqueue(item) {
    this.data.unshift(item);
  }
  // removing element from the queue 
  // returns underflow when called  
  // on empty queue 

  dequeue() {
    if (this.isEmpty()) {
      return "Underflow";
    }
    return this.data.shift();
  }

  // front function 
  front() {
    // returns the Front element of  
    // the queue without removing it. 
    if (this.isEmpty())
      return "No elements in Queue";
    return this.data[0];
  }

  // isEmpty function 
  isEmpty() {
    // return true if the queue is empty. 
    return this.data.length === 0;
  }
}

module.exports = Queue;

If you found this article helpful, please click the drawing Follow this channel for more articles on Data Structures using Javascript.

Heroku

Deploy with ease. Manage efficiently. Scale faster.

Leave the infrastructure headaches to us, while you focus on pushing boundaries, realizing your vision, and making a lasting impression on your users.

Get Started

Top comments (6)

Collapse
 
jonrandy profile image
Jon Randy 🎖ī¸ â€ĸ

You've essentially wrapped another object that already provides the queue-like functionality instead of implementing it yourself

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt â€ĸ â€ĸ Edited

If you really need a double-ended high-performance queue, I have seen it implemented here, with no dependencies.

github.com/lleo/node-dequeue/blob/...

Uses are for

  • 10k+ array.length
  • shift / unshift often.

For Python, it's from collections import deque, I think.

Collapse
 
joelbarbosa_ profile image
Joel Barbosa â€ĸ

I think to work with Stacks, Queue is good to work with Node and not with arrays, for performance issues.

Collapse
 
ilya_sher_prog profile image
Ilya Sher â€ĸ

misleading beginners

That's my main concern. It's pretty bad situation.

Some comments may only be visible to logged-in visitors. Sign in to view all comments.

Playwright CLI Flags Tutorial

5 Playwright CLI Flags That Will Transform Your Testing Workflow

  • --last-failed: Zero in on just the tests that failed in your previous run
  • --only-changed: Test only the spec files you've modified in git
  • --repeat-each: Run tests multiple times to catch flaky behavior before it reaches production
  • --forbid-only: Prevent accidental test.only commits from breaking your CI pipeline
  • --ui --headed --workers 1: Debug visually with browser windows and sequential test execution

Learn how these powerful command-line options can save you time, strengthen your test suite, and streamline your Playwright testing experience. Practical examples included!

Watch Video 📹ī¸

👋 Kindness is contagious

If this post resonated with you, feel free to hit ❤ī¸ or leave a quick comment to share your thoughts!

Okay