Implementing Priority Queue in JavaScript

Implementing Priority Queue in JavaScript

1. Introduction to priority queue

We know that when an element is inserted into an ordinary queue, the data will be placed at the back end, and the previous data will not be processed until all the previous elements are processed. However, the priority queue considers the priority of the data when inserting an element and compares it with the priority of other data. After the comparison is completed, the correct position of this element in the queue can be obtained. The other processing methods are basically the same as those of the basic queue.

The main issues to consider for priority queues are:

  • Each element is no longer just a piece of data, but also contains the priority of the data;
  • In the add method, put in the correct position according to the priority.

There are also examples of priority queues used in daily life, such as hospital (emergency department) waiting rooms. Doctors will give priority to patients with more serious conditions. In computers, we can also use priority queues to rearrange the order of tasks in the queue. For example, the importance of tasks processed by each thread is different, and we can use the size of the priority to determine the order in which the thread is processed in the queue.

2. Priority Queue Encapsulation

The operation of the priority queue is basically the same as that of the queue, but the insertion operation is different, so here we mainly implement the insertion operation of the priority queue.

For example, if we want to insert elements according to the priority of certain data, we first create a class to encapsulate the priority queue, create a constructor inside it to save the priority and data of the element, and then add an attribute to store the element.

The code is as follows:

function PtiorityQueue(){
            var items = [];
            //Encapsulate a new constructor to save elements and their priorities function queueElement(element,priority){
                this.element = element;
                this.priority = priority;
            }
        }

After the creation is completed, the insertion operation is implemented:

  • If there is no element in the queue, insert it directly
  • If the priority of the element to be inserted is less than the priority of the element inside the queue, it is inserted after sorting.

The specific implementation code is as follows:

function PtiorityQueue(){
   this.items = [];
    //Encapsulate a new constructor to save elements and their priorities function QueueElement(element,priority){
        this.element = element;
        this.priority = priority;
    }
     //1. Implement the insertion method PtiorityQueue.prototype.enqueue = function(element,priority){
        //1. Create queueElement object var queueElement = new QueueElement(element,priority);
        //2. Determine whether the queue is empty if (this.items.length == 0) {
            this.items.push(queueElement);
        }else{
            var flag = false;
            for(var i =0;i<this.items.length;i++){
                if (queueElement.priority < this.items[i].priority) {
                    this.items.splice(i,0,queueElement);
                    flag = true;
                    break;
                }
            }
            if(!flag){
                this.items.push(queueElement)
            }
        }
     }
}

The input test data is:

var pq = new PtiorityQueue();
pq.enqueue('d',30)
pq.enqueue('c',50)
pq.enqueue('a',100)
pq.enqueue('b',60)
pq.enqueue('e',20)
console.log(pq);

The print result is:

This is the end of this article about implementing priority queues in JavaScript. For more information about priority queues, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of JavaScript data structure: priority queue and circular queue examples
  • JavaScript queues, priority queues and circular queues

<<:  How to build a deep learning environment running Python in Docker container

>>:  Use viewport in meta tag to define screen css

Recommend

Vue.js implements the code of clicking the icon to zoom in and leaving

The previous article introduced how Vue can reali...

The use of mysql unique key in query and related issues

1. Create table statement: CREATE TABLE `employee...

Make a nice flip login and registration interface based on html+css

Make a nice flip login and registration interface...

Web page experience: planning and design

1. Clarify the design direction <br />First,...

Detailed tutorial on Tomcat installation and deployment in Windows 10

Table of contents 1 Java environment configuratio...

A simple and in-depth study of async and await in JavaScript

Table of contents 1. Introduction 2. Detailed exp...

Ubuntu16.04 builds php5.6 web server environment

Ubuntu 16.04 installs the PHP7.0 environment by d...

HTML is actually the application of learning several important tags

After the article "This Will Be a Revolution&...

A brief analysis of different ways to configure static IP addresses in RHEL8

While working on a Linux server, assigning static...

JavaScript manual implementation of instanceof method

1. Usage of instanceof instanceof operator is use...

VMware Workstation 14 Pro installation Ubuntu 16.04 tutorial

This article records the specific method of insta...

Detailed explanation of MySQL date addition and subtraction functions

1. addtime() Add the specified number of seconds ...

Code to enable IE8 in IE7 compatibility mode

The most popular tag is IE8 Browser vendors are sc...

MySQL GTID comprehensive summary

Table of contents 01 Introduction to GTID 02 How ...

How to change the encoding of MySQL database to utf8mb4

The utf8mb4 encoding is a superset of the utf8 en...