啦啦啦,啦啦啦,这将是线性表系列文章的最后一篇了,就是队列。flag也先立了,队列也是线性表,一种有着特殊表现的线性表。

    其实很多时候,现实生活中案例就是活脱脱的队列应用案例。你们去过周一到周五早上八点左右的天通苑地铁站或者周一到周五的西二旗地铁站吗?7. 数据结构之队列 - 图17. 数据结构之队列 - 图27. 数据结构之队列 - 图3

    一般情况下,不出意外应该都是这样的:

    7. 数据结构之队列 - 图4

    如果你有无人机的,空中航拍一下,俯瞰效果大概可能会类似于下图:

    7. 数据结构之队列 - 图5

    如果你要添加节点,那就只能往队列的尾巴上添加新节点。如果你要删除节点,那就只能从队列的头部删除节点。这种特性,我们用先进先出(FIFO, First-In-First-Out)来形容,而上节的栈实际上是后进先出(LIFO,Last-In-First-Out)。

    多说一句,为啥地铁站要这么干?实际上就是为了限流。这和大家嘴中常说的利用消息队列限流保证服务不会冲跨就是一个道理。

    由于队列本质上也是线性表,所以我们依然拿单链表的代码进行修改,摇身一变变成队列:

    1. <?php
    2. // 将结点抽象成一个node class,具备data和next两个属性
    3. class Node{
    4. public $data = null;
    5. public $next = null;
    6. public function __construct( $data = null ){
    7. $this->data = $data;
    8. }
    9. }
    10. // 单链表的存储
    11. class Linked_sq{
    12. private $head = null;
    13. public function __construct(){
    14. // 添加一个头结点
    15. $this->head = new Node();
    16. }
    17. /*
    18. * @desc : 获取单链表长度
    19. */
    20. public function get_length(){
    21. // 注意 头结点 不算在单链表的长度内
    22. $length = 0;
    23. $head = $this->head;
    24. while( $head->next ){
    25. $head = $head->next;
    26. $length++;
    27. }
    28. return $length;
    29. }
    30. /*
    31. * @desc : 添加一个结点
    32. * @param : index
    33. * @param : item
    34. */
    35. public function add_item( $index, $item ){
    36. $length = $this->get_length();
    37. if( $index < 0 || $index > $length ){
    38. return false;
    39. }
    40. // 获取头结点
    41. $head = $this->head;
    42. for( $i = 0; $i < $index; $i++){
    43. $head = $head->next;
    44. }
    45. // 初始化一个新结点
    46. $node = new Node( $item );
    47. $node->next = $head->next;
    48. $head->next = $node;
    49. return true;
    50. }
    51. /*
    52. * @desc : 删除一个结点
    53. * @param : index
    54. */
    55. public function delete_item( $index ){
    56. $length = $this->get_length();
    57. if( $index < 0 || $index > $length ){
    58. return null;
    59. }
    60. $head = $this->head;
    61. // 这里循环的终止条件一定要想明白了,我要删除index位置上的结点,从0开始寻找一直到index这个结点,但是
    62. // 当循环终止的时候,被选中的结点是 index - 1 位置上的结点
    63. for( $i = 0; $i < $index; $i++ ){
    64. $head = $head->next;
    65. }
    66. // 这个才是要被删除的结点
    67. $delete_node = $head->next;
    68. $value = $delete_node->data;
    69. // 修改指针指向
    70. $head->next = $head->next->next;
    71. // 删除结点
    72. unset( $delete_node );
    73. return $value;
    74. }
    75. /*
    76. * @desc : 查找某个位置上的数值
    77. * @param : index
    78. */
    79. public function get_item_by_index( $index ){
    80. $length = $this->get_length();
    81. if( $index < 0 || $index > $length ){
    82. return null;
    83. }
    84. $head = $this->head;
    85. // 注意这里终止条件,这里获取到的是 index-1 位置上的结点
    86. for( $i = 0; $i < $index; $i++ ){
    87. $head = $head->next;
    88. }
    89. return $head->next->data;
    90. }
    91. /*
    92. * @desc : 清空整个单链表
    93. */
    94. public function truncate(){
    95. // 第一个结点,就是头结点
    96. $head = $this->head;
    97. while( $head->next ){
    98. $temp = $head->next;
    99. unset( $head->next );
    100. $head = $temp;
    101. }
    102. return true;
    103. }
    104. /*
    105. * @desc : shift
    106. */
    107. public function shift(){
    108. $length = $this->get_length();
    109. return $this->delete_item( 0 );
    110. }
    111. /*
    112. * @desc : push
    113. */
    114. public function push( $item ){
    115. $length = $this->get_length();
    116. return $this->add_item( $length, $item );
    117. }
    118. }
    119. $link = new Linked_sq();
    120. echo 'length : '.$link->get_length().PHP_EOL;
    121. // 添加一个结点
    122. $link->push( 9 );
    123. echo 'length : '.$link->get_length().PHP_EOL;
    124. $link->push( 12 );
    125. $link->push( 3 );
    126. $link->push( 5 );
    127. echo 'length : '.$link->get_length().PHP_EOL;
    128. // 获取第2个位置上的数字
    129. echo "index 2 : ".$link->get_item_by_index( 2 ).PHP_EOL;
    130. // shift出第一个元素
    131. echo $link->shift().PHP_EOL;
    132. echo 'length : '.$link->get_length().PHP_EOL;
    133. echo "index 2 : ".$link->get_item_by_index( 2 ).PHP_EOL;

    线性表这里的基础章节就到这里结束啦,后面的文章有两个可能:

    • 线性表的一些实际用例
    • 开始二叉树相关内容