1. 队列数据结构

队列是遵循 FIFO(First In First Out,先进先出)的一组有序的项。在尾部添加元素,并从顶部移除元素。
image.png

1.1 创建队列

  • enqueue(element(s)):向队列尾部添加一个(或多个)新的项。
  • dequeue():移除队列的第一(即排在队列最前面的)项,并返回被移除的元素。
  • front():返回队列中第一个元素——最先被添加,也将是最先被移除的元素。队列不做任何变动(不移除元素,只返回元素信息——与Stack类的peek方法非常类似)。
  • isEmpty():如果队列中不包含任何元素,返回true,否则返回false。
  • size():返回队列包含的元素个数,与数组的length属性类似。

    1.1.1 传统方式

    1. function Queue() {
    2. const items = [];
    3. this.enqueue = (element) => items.push(element);
    4. this.dequeue = () => items.shift();
    5. this.front = () => items[0];
    6. this.isEmpty = () => items.length === 0;
    7. this.size = () => items.length;
    8. this.print = () => console.log(items.toString());
    9. }

    1.1.2 ES6 Class

    1. const Queue = (function () {
    2. const items = new WeakMap();
    3. class Queue {
    4. constructor() {
    5. items.set(this, []);
    6. }
    7. enqueue(element) {
    8. const q = items.get(this);
    9. q.push(element);
    10. }
    11. dequeue() {
    12. const q = items.get(this);
    13. return q.shift();
    14. }
    15. front() {
    16. const q = items.get(this);
    17. return q[0];
    18. }
    19. isEmpty() {
    20. const q = items.get(this);
    21. return q.length === 0;
    22. }
    23. size() {
    24. const q = items.get(this);
    25. return q.length;
    26. }
    27. print() {
    28. const q = items.get(this);
    29. console.log(q.toString());
    30. }
    31. }
    32. return Queue;
    33. })();

    1.2 优先队列

    和基本的队列相比,优先队列需要一个辅助类,用于包含元素的优先级信息,同时分为最小优先队列,和最大优先队列。其他方法没什么区别,只有入队列(enqueue)时要根据优先级来决定在队列中的位置。

    1. /**
    2. * 优先队列
    3. * @type {Queue}
    4. */
    5. const PriorityQueue = (function () {
    6. const items = new WeakMap();
    7. /**
    8. * 队列元素能包含优先级信息
    9. */
    10. class QueueElement {
    11. constructor(element, priority) {
    12. this.element = element;
    13. this.priority = priority;
    14. }
    15. }
    16. class Queue {
    17. constructor() {
    18. items.set(this, []);
    19. }
    20. // 最小优先队列(queueElement.priority < q[i].priority)
    21. enqueue(element, priority = 0) {
    22. if (element === undefined) {
    23. throw new Error('参数非法');
    24. }
    25. const q = items.get(this);
    26. const queueElement = new QueueElement(element, priority);
    27. let added = false;
    28. for (let i = 0; i < q.length; i++) {
    29. if (queueElement.priority < q[i].priority) {
    30. q.splice(i, 0, queueElement);
    31. added = true;
    32. break;
    33. }
    34. }
    35. if (!added) {
    36. q.push(queueElement);
    37. }
    38. }
    39. // 最大优先队列(queueElement.priority > q[i].priority)
    40. enqueue2(element, priority = 0) {
    41. if (element === undefined) {
    42. throw new Error('参数非法');
    43. }
    44. const q = items.get(this);
    45. const queueElement = new QueueElement(element, priority);
    46. let added = false;
    47. for (let i = 0; i < q.length; i++) {
    48. if (queueElement.priority > q[i].priority) {
    49. q.splice(i, 0, queueElement);
    50. added = true;
    51. break;
    52. }
    53. }
    54. if (!added) {
    55. q.push(queueElement);
    56. }
    57. }
    58. dequeue() {
    59. const q = items.get(this);
    60. return q.shift();
    61. }
    62. front() {
    63. const q = items.get(this);
    64. return q[0];
    65. }
    66. isEmpty() {
    67. const q = items.get(this);
    68. return q.length === 0;
    69. }
    70. size() {
    71. const q = items.get(this);
    72. return q.length;
    73. }
    74. print() {
    75. const q = items.get(this);
    76. q.forEach(item => {
    77. console.log(`${item.element} - ${item.priority}`);
    78. });
    79. }
    80. }
    81. return Queue;
    82. })();

    1.3 循环队列

    ```javascript const Queue = require(‘./queue-weakMap’);

/**

  • 利用循环队列实现击鼓传花(烫手山芋)
  • 由于 JS 语言的灵活性,数组长度可以动态变化,这里的循环是指纯粹的元素滚动
  • 而像 Java 语言中的循环(环形)队列,指的是:
  • 通过数组和指针结合取余%运算,把存储队列元素的表从逻辑上看成一个环,称为循环队列,
  • 从而实现用固定长度的数组模拟队列时,可以循环利用数组的空间 *
  • @param nameList 名字列表
  • @param num 循环次数
  • @returns {} 获胜者 / function hotPotato(nameList = [], num) { const queue = new Queue();

    for (let i = 0; i < nameList.length; i++) { queue.enqueue(nameList[i]); }

    let eliminated = ‘’;

    // 最终只留一位获胜者 while (queue.size() > 1) { // 没循环滚动 num 次后,淘汰一名 for (let i = 0; i < num; i++) { queue.enqueue(queue.dequeue()); // 没停止滚动前,会重新进入队列,所以暂时不会被淘汰 } eliminated = queue.dequeue(); console.log(eliminated + ‘在游戏中被淘汰!’); }

    return queue.dequeue(); // 返回获胜者 }

const nameList = [‘a’, ‘b’, ‘c’, ‘d’, ‘e’]; const winner = hotPotato(nameList, 5); console.log(‘获胜者是:’, winner); ```

1.4 双端队列

双端队列 Deque。
双端队列是一种允许我们同时从前端和后端添加和移除元素的特殊队列。在计算机科学中双端队列常见应用是存储一系列的撤销操作。
当用户在软件中进行了操作时,该操作从尾部进入双端队列;
当用户点击撤销按钮时,从双端队列的尾部移除;
当队列中的操作达到预定义的一定数量后,最先存入的操作会被移除(头部移除)。
双端队列同时遵守了先进先出和后进先出的原则。
https://book.douban.com/subject/33441631
https://www.cnblogs.com/justbecoder/p/11383570.html