js数据结构--优先级队列

优先级队列

概念

优先级队列主要考虑的问题为:

  • 每个元素不再只是一个数据,还包含数据的优先级;
  • 在添加数据过程中,根据优先级放入到正确位置;

实现

// 函数方式
function PriorityQueue() {
               // 重新创建一个内部类,相当于将元素以及对应的优先级放在这个类中
               function QueueElement(element, priority) {
                    this.element = element
                    this.priority = priority
               }
               //     使用数组进行封装属性
               this.items = []
               // 实现插入方法
               PriorityQueue.prototype.enqueue = function (element, priority) {
                    // 1,创建QueueElement对象
                    let queueElement = new QueueElement(element, priority)
                    // 2,判断队列是否为空
                    if (this.items.length == 0) {
                         this.items.push(queueElement)
                    } else {
                         // 3,当队列不为空的时候,需要进行每个进行比较 
                         var added = false //用来标记数据是否插入
                         for (let 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)
                              }
                         }
                    }
               }
               // dequeue() 出队,从队列中删除队头元素,返回删除的那个元素
               PriorityQueue.prototype.dequeue = function () {
                    return this.items.shift();
               }

               // front() 查看队列的队头元素
               PriorityQueue.prototype.front = function () {
                    return this.items[0];
               }

               // isEmpty() 查看队列是否为空
               PriorityQueue.prototype.isEmpty = function () {
                    return this.items.length === 0;
               }

               // size() 查看队列中元素的个数
               PriorityQueue.prototype.size = function () {
                    return this.items.length;
               }

               // toString() 将队列中的元素以字符串形式返回
               PriorityQueue.prototype.toString = function () {
                    let result = '';
                    for (let item of this.items) {
                         result += item.element + '-'+ item.priority+' ';
                    }
                    return result;
               }

          }
//类的方式
/ 优先队列内部的元素类
class QueueElement {
  
  constructor(element, priority) {
    this.element = element;
    this.priority = priority;
  }
}

// 优先队列类(继承 Queue 类)
export class PriorityQueue extends Queue {

  constructor() {
    super();
  }

  // enqueue(element, priority) 入队,将元素按优先级加入到队列中
  // 重写 enqueue()
  enqueue(element, priority) {
    // 根据传入的元素,创建 QueueElement 对象
    const queueElement = new QueueElement(element, priority);

    // 判断队列是否为空
    if (this.isEmpty()) {
      // 如果为空,不用判断优先级,直接添加
      this.items.push(queueElement);
    } else {
      // 定义一个变量记录是否成功添加了新元素
      let added = false;

      for (let i = 0; i < this.items.length; i++) {
        // 让新插入的元素进行优先级比较,priority 值越小,优先级越大
        if (queueElement.priority < this.items[i].priority) {
          // 在指定的位置插入元素
          this.items.splice(i, 0, queueElement);
          added = true;
          break;
        }
      }

      // 如果遍历完所有元素,优先级都大于新插入的元素,就将新插入的元素插入到最后
      if (!added) {
        this.items.push(queueElement);
      }
    }
  }

  // dequeue() 出队,从队列中删除前端元素,返回删除的元素
  // 继承 Queue 类的 dequeue()
  dequeue() {
    return super.dequeue();
  }

  // front() 查看队列的前端元素
  // 继承 Queue 类的 front()
  front() {
    return super.front();
  }

  // isEmpty() 查看队列是否为空
  // 继承 Queue 类的 isEmpty()
  isEmpty() {
    return super.isEmpty();
  }

  // size() 查看队列中元素的个数
  // 继承 Queue 类的 size()
  size() {
    return super.size();
  }

  // toString() 将队列中元素以字符串形式返回
  // 重写 toString()
  toString() {
    let result = '';
    for (let item of this.items) {
      result += item.element + '-' + item.priority + ' ';
    }
    return result;
  }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值