主頁 > 知識庫 > php 數(shù)據(jù)結(jié)構(gòu)之鏈表隊列

php 數(shù)據(jù)結(jié)構(gòu)之鏈表隊列

熱門標(biāo)簽:安徽移動外呼系統(tǒng) 百度地圖標(biāo)注飯店位置怎么 施工地圖標(biāo)注怎么做 百度地圖標(biāo)注名編輯 個性化地圖標(biāo)注在線 深圳400電話辦理那家好 清遠陽山400電話號碼如何申請 襄陽房產(chǎn)電銷機器人招商 怎么在高德地圖標(biāo)注行走軌跡

php 鏈表隊列

實例代碼:

class Queue{ 
  
  private $last; 
  private $first; 
  private $oldfirst; 
  private static $n=0; 
   
  public function __construct(){ 
    $this->last   = null; 
    $this->first  = null; 
    $this->oldfirst = null; 
  } 
   
  public function push($item){ 
    $this->oldfirst = $this->last; 
    $this->last = new Node(); 
    $this->last->item = $item; 
    $this->last->next = null; 
    if(empty($this->first)){ 
      $this->first = $this->last; 
    }else{ 
      $this->oldfirst->next = $this->last; 
    } 
    self::$n++; 
  } 
   
  public function pop(){ 
    if(self::$n0){ 
      return null; 
    } 
    $item = $this->first->item; 
    $this->first = $this->first->next; 
    self::$n--; 
    return $item; 
  } 
   
} 
 
class Node{ 
  public $item; 
  public $next; 
} 
 
$Queue = new Queue(); 
$Queue->push("a"); 
$Queue->push("b"); 
$Queue->push("c"); 
echo $Queue->pop().PHP_EOL; 
echo $Queue->pop().PHP_EOL; 
echo $Queue->pop().PHP_EOL; 
echo $Queue->pop().PHP_EOL;

如有疑問請留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

您可能感興趣的文章:
  • PHP雙向鏈表定義與用法示例
  • php實現(xiàn)單鏈表的實例代碼
  • 淺談PHP鏈表數(shù)據(jù)結(jié)構(gòu)(單鏈表)
  • PHP小教程之實現(xiàn)雙向鏈表
  • PHP環(huán)形鏈表實現(xiàn)方法示例
  • PHP中模擬鏈表和鏈表的基本操作示例
  • PHP簡單實現(xiàn)循環(huán)鏈表功能示例
  • PHP實現(xiàn)鏈表的定義與反轉(zhuǎn)功能示例

標(biāo)簽:延邊 南昌 阜陽 黑河 駐馬店 欽州 臨夏 中衛(wèi)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《php 數(shù)據(jù)結(jié)構(gòu)之鏈表隊列》,本文關(guān)鍵詞  php,數(shù)據(jù)結(jié)構(gòu),之鏈,表,隊列,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《php 數(shù)據(jù)結(jié)構(gòu)之鏈表隊列》相關(guān)的同類信息!
  • 本頁收集關(guān)于php 數(shù)據(jù)結(jié)構(gòu)之鏈表隊列的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章