【JavaScript数据结构系列】04-优先队列PriorityQueue

码路工人 CoderMonkey

转载请注明作者与出处

## 1. 认识优先级队列

经典的案例场景:

  • 登机时经济舱的普通队列与头等舱的优先级队列
  • 股票交易时基于时间和价格的成交规则上,量大优先的优先级队列

再用我们打饭的例子:
假定规则:饥饿等级0级最高,需要马上进食
下图同学C优先级高于同学B,插队在同学A后面

2. 代码实现

注:

ES6 版的代码实现请查看 npm 包 data-struct-js 代码

Github/Gitee 上都能找到

npm install data-struct-js

在队列 Queue 的基础上,我们来实现一下优先级队列。

  • 优先级队列只在入队操作上与普通队列不同,其它方法相同
  • 参考上一节里的基于栈实现的队列,也稍稍修改下队列实现的代码

入队操作实现分析:

  • 在创建元素时,我们需要一个优先级参数/字段(priority)
  • 并对优先级做检查,以及默认值设置
  • 空队列时直接入队
  • 非空时,从队列头部开始比对每一个元素,新元素优先级高时插入
  • 比对到最后一个也没能插入时(新元素优先级最低)添加到队尾

主要是 enqueue 方法和 QueueElement 的封装。

// 优先队列
function PriorityQueue() {
this.__items = [] /**
*队列元素对象
*优先级默认为最低
*/
function QueueElement(element, priority) {
// check priority
if(typeof(priority) != 'number' || Number.isNaN(priority)) {
// min-level: Infinity
priority = Infinity
}
this.__element = element
// max-level: 0
this.__priority = priority QueueElement.prototype.priority = function() {
return this.__priority
} QueueElement.prototype.toString = function() {
return this.__element.toString.apply(this.__element)
}
} // 入队方法
PriorityQueue.prototype.enqueue = function(element, priority) {
var queueElement = new QueueElement(element, priority) // 空队列时直接入队
if(this.__items.length === 0) {
this.__items.push(queueElement)
}
// 非空队列入队需比较优先级
else {
var added = false
for(var i=0;i<this.__items.length;i++) {
if(queueElement.priority() < this.__items[i].priority()) {
this.__items.splice(i, 0, queueElement)
added = true
break
}
}
if(!added) {
this.__items.push(queueElement)
}
}
}
}

自己封装的优先级队列中优先级priority也可以作为复杂对象上的一个属性,无需另传参数

完整代码(用到的上一节中的 deepCopy 方法也一并贴上吧)

PriorityQueue.js

这里为了方便查看代码写全了,

实际上重复的部分可以继承普通队列

// 优先队列
function PriorityQueue() {
this.__items = [] /**
*队列元素对象
*优先级默认为最低
*/
function QueueElement(element, priority) {
// check priority
if(typeof(priority) != 'number' || Number.isNaN(priority)) {
// min-level: Infinity
priority = Infinity
}
this.__element = element
// max-level: 0
this.__priority = priority QueueElement.prototype.priority = function() {
return this.__priority
} QueueElement.prototype.toString = function() {
return this.__element.toString.apply(this.__element)
}
} // 入队方法
PriorityQueue.prototype.enqueue = function(element, priority) {
var queueElement = new QueueElement(element, priority) // 空队列时直接入队
if(this.__items.length === 0) {
this.__items.push(queueElement)
}
// 非空队列入队需比较优先级
else {
var added = false
for(var i=0;i<this.__items.length;i++) {
if(queueElement.priority() < this.__items[i].priority()) {
this.__items.splice(i, 0, queueElement)
added = true
break
}
}
if(!added) {
this.__items.push(queueElement)
}
}
} PriorityQueue.prototype.dequeue = function() {
return this.getItems().shift()
} PriorityQueue.prototype.front = function () {
return this.__items.length === 0 ? undefined : this.getItems()[0]
} PriorityQueue.prototype.getItems = function() {
return deepCopy(this.__items)
} PriorityQueue.prototype.isEmpty = function () {
return this.__items.length === 0
} PriorityQueue.prototype.size = function () {
return this.__items.length
} PriorityQueue.prototype.clear = function () {
this.__items.length = 0
} PriorityQueue.prototype.toString = function () {
var arrStr = this.__items.map((qe)=>{
return qe.toString()
})
return arrStr.join('\r\n')
}
}
function deepCopy(source) {
var dest
if(Array.isArray(source)) {
dest = []
for (let i = 0; i < source.length; i++) {
dest[i] =deepCopy(source[i])
}
}
else if(toString.call(source) === '[object Object]') {
dest = {}
for(var p in source){
if(source.hasOwnProperty(p)){
dest[p]=deepCopy(source[p])
}
}
}
else {
dest = source
}
return dest
}

测试一下

var pq = new PriorityQueue()

pq.enqueue({name: 'A-First Element | Priority:1', age: 18, toString: function(){return this.name}}, 1)
pq.enqueue({name: 'B-Second Element | Priority:3', age: 18, toString: function(){return this.name}}, 3)
pq.enqueue({name: 'C-Third Element | Priority:2', age: 18, toString: function(){return this.name}}, 2) console.log(pq.toString())

以优先级分别为 1 -> 3 -> 2 的顺序添加元素,
输出结果为:

A-First Element | Priority:1
C-Third Element | Priority:2
B-Second Element | Priority:3

收工。


做了一份 npm 工具包 data-struct-js
基于 ES6 实现的 JavaScript 数据结构,
虽然这个小轮子很少会被使用,
也许对于初学者学习 JavaScript 会有点帮助。
只要简单 install 一下即可,感兴趣的话还可以去
GitHub / Gitee 看源码。(来 Star 一个吧)

npm install data-struct-js --save-dev

https://github.com/CoderMonkie/data-struct-js

https://gitee.com/coder-monkey/data-struct-js

最后,感谢您的阅读和支持~


-end-

【JavaScript数据结构系列】04-优先队列PriorityQueue的更多相关文章

  1. 【JavaScript数据结构系列】03-队列Queue

    [JavaScript数据结构系列]03-队列Queue 码路工人 CoderMonkey 转载请注明作者与出处 1. 认识队列Queue结构 队列,跟我们的日常生活非常贴近,我们前面举例了食堂排队打 ...

  2. 【JavaScript数据结构系列】00-开篇

    [JavaScript数据结构系列]00-开篇 码路工人 CoderMonkey 转载请注明作者与出处 ## 0. 开篇[JavaScript数据结构与算法] 大的计划,写以下两部分: 1[JavaS ...

  3. JavaScript进阶系列04,函数参数个数不确定情况下的解决方案

    本篇主要体验函数参数个数不确定情况下的一个解决方案.先来看一段使用函数作为参数进行计算的实例. var calculate = function(x, y, fn) { return fn(x, y) ...

  4. 【JavaScript数据结构系列】07-循环链表CircleLinkedList

    [JavaScript数据结构系列]07-循环链表CircleLinkedList 码路工人 CoderMonkey 转载请注明作者与出处 1. 认识循环链表 首节点与尾节点相连的,就构成循环链表.其 ...

  5. 【JavaScript数据结构系列】05-链表LinkedList

    [JavaScript数据结构系列]05-链表LinkedList 码路工人 CoderMonkey 转载请注明作者与出处 ## 1. 认识链表结构(单向链表) 链表也是线性结构, 节点相连构成链表 ...

  6. 【JavaScript数据结构系列】06-双向链表DoublyLinkedList

    [JavaScript数据结构系列]06-双向链表DoublyLinkedList 码路工人 CoderMonkey 转载请注明作者与出处 1. 认识双向链表 不同于普通链表/单向链表,双向链表最突出 ...

  7. 【JavaScript数据结构系列】02-栈Stack

    [JavaScript数据结构系列]02-栈Stack 码路工人 CoderMonkey 转载请注明作者与出处 ## 1. 认识栈结构 栈是非常常用的一种数据结构,与数组同属线性数据结构,不同于数组的 ...

  8. 【JavaScript数据结构系列】01-数组Array

    [JavaScript数据结构系列]01-数组Array 码路工人 CoderMonkey 转载请注明作者与出处 # [JavaScript数据结构系列] # 01-数组Array 数组: 是有序的元 ...

  9. 算法&数据结构系列 -- 堆(优先队列)

    前言 话说新开的博客十分好用... 所以,我打算开一个坑,名曰[算法系列]. 什么意思--从名字泥应该就猜得出来... 废话不多说,进入正文~~ 正文 原理 首先,堆是一颗棵二叉树.. 其次,堆是一棵 ...

随机推荐

  1. 网速慢?不!可能是DNS出了问题! 公共DNS优选之 BAT 百度、腾讯、阿里、谷歌DNS哪个更快?

    如果一下还是解决不了你的问题请这边走 首先是Google的DNS: 8.8.8.8 丢包严重 PASS但是扶墙的时候是必备的,如果有扶墙的需求的话可以备用. 二.百度DNS 180.76.76.76 ...

  2. 图论--最小生成树--Kruscal 模板

    #include<iostream> #include<queue> #include<algorithm> #include<set> #includ ...

  3. cms 环境搭建

    一 :安装 JDK: 1.在根目录下新建目录 JDK 2.通过 xftp 导入 jdk 压缩包到 JDK 目录中 jdk-8u144-linux-x64.tar.gz,解压 tar -zxvf jdk ...

  4. Hello World的五十种不同实现方法!!!!!

    我们作为一名程序员,职业生涯中至少完成了一个“Hello, World!“程序.当我们学习一门新的语言时,“Hello, World!“通常是我们所写的第一个程序.程序员一般也都会使用多门语言,甚至有 ...

  5. <学习笔记之 JQuery>

    1. mouseenter   当鼠标指针进入(穿过)元素时,触发事件 var is_enter_help = false; $("#help-div").mouseenter(f ...

  6. 算法——Java实现栈

    栈 定义: 栈是一种先进后出的数据结构,我们把允许插入和删除的一端称为栈顶,另一端称为栈底,不含任何元素的栈称为空栈 栈的java代码实现: 基于数组: import org.junit.jupite ...

  7. 量子纠错码——Stabilizer codes

    对于错误,一般有两种: random: 错误以一定的概率发生在每个比特上(对这种问题的研究一般是信息论中,信道熵一类的问题) worst case: 错误发生在某个比特上,这也是纠错码襄阳解决的问题 ...

  8. php使用curl post josn数据

    今天在工作中使用到要使用("Content-Type", "application/json;charset=UTF-8")格式传送和接受数据,再次做个记录 p ...

  9. (技能篇)Mysql在linux下的全量热备份

    相关命令: #创建备份目录 mkdir -p /mysqlbackup #进入创建的备份目录中 cd /mysqlbackup #如果mysql运行在mysql用户和用户组下面,root表示用户,my ...

  10. Centos7下设置ceph 12.2.1 (luminous)dashboard UI监控功能

    前言 本文所使用的集群是作者在博客 Centos7下部署ceph 12.2.1 (luminous)集群及RBD使用  中所搭建的集群 dashboard是为了完成对集群状态进行UI监控所开发的功能, ...