PHP實現鏈式隊列

來源:互聯網
上載者:User
這篇文章主要介紹了PHP實現的鏈式隊列結構,結合具體執行個體形式分析了php鏈式隊列的定義及入隊、出隊、列印佇列等基本操作實現與使用方法,需要的朋友可以參考下

本文執行個體講述了PHP實現的鏈式隊列結構。分享給大家供大家參考,具體如下:


<?phpheader("Content-Type:text/html;charset=utf-8");/** * 鏈式隊列 */class node{  public $nickname;  public $next;}class queue{  public $front;//頭部  public $tail;//尾部  public $maxSize;//容量  public $next;//指標  public $len=0;//長度  public function __construct($size)  {    $this->init($size);  }  public function init($size)  {    $this->front = $this;    $this->tail = $this;    $this->maxSize = $size;  }  //入隊操作  public function inQ($nickname)  {    $node = new node();    $node->nickname = $nickname;    if ($this->len==$this->maxSize)    {      echo '隊滿了</br>';    } else {      $this->tail = $node;      $this->tail->next = $node;      $this->len++;      echo $node->nickname.'入隊成功</br>';    }  }  //出隊操作  public function outQ()  {    if ($this->len==0)    {      echo '隊空了</br>';    } else {      $p = $this->front->next;      $this->front->next = $p->next;      $this->len--;      echo $p->nickname.'出隊成功</br>';    }  }  //列印隊  public function show()  {    for ($i=$this->len;$i>0;$i--)    {      $this->outQ();    }  }}echo "**********入隊操作******************</br>";$q = new queue(5);$q->inQ('入雲龍');$q->inQ('花和尚');$q->inQ('青面獸');$q->inQ('行者');$q->inQ('玉麒麟');$q->inQ('母夜叉');echo "**********出隊隊操作******************</br>";$q->outQ();$q->outQ();$q->outQ();$q->outQ();$q->inQ('操刀鬼');$q->inQ('截江鬼');$q->inQ('赤發鬼');$q->outQ();?>

運行結果:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.