php單鏈表實(shí)現(xiàn)代碼分享
更新時間:2016年07月04日 15:40:10 作者:什么哥
這篇文章主要為大家分享了php單鏈表實(shí)現(xiàn)代碼,代碼簡潔,感興趣的小伙伴們可以參考一下
本文實(shí)例為大家分享了php單鏈表的具體代碼,供大家參考,具體內(nèi)容如下
<?php /** * 單鏈表 */ class Demo { private $id; public $name; public $next; public function __construct ($id = '', $name = '') { $this->id = $id; $this->name = $name; } static public function show ($head) { $cur = $head; while ($cur->next) { echo $cur->next->id,'###',$cur->next->name,'<br />'; $cur = $cur->next; } echo '<hr />'; } //尾插法 static public function push ($head, $node) { $cur = $head; while (NULL != $cur->next) { $cur = $cur->next; } $cur->next = $node; return $head; } static public function insert($head, $node) { $cur = $head; while (NULL != $cur->next) { if ($cur->next->id > $node->id) { break; } $cur = $cur->next; } $node->next = $cur->next; $cur->next = $node; return $head; } static public function edit($head, $node) { $cur = $head; while (NULL != $cur->next) { if ($cur->next->id == $node->id) { break; } $cur = $cur->next; } $cur->next->name = $node->name; return $head; } static public function pop ($head, $node) { $cur = $head; while (NULL != $cur->next) { if ($cur->next == $node) { break; } $cur = $cur->next; } $cur->next = $node->next; return $head; } } $team = new Demo(); $node1 = new Demo(1, '唐三藏'); Demo::push($team, $node1); $node1->name = '唐僧'; Demo::show($team); // Demo::show($team); $node2 = new Demo(2, '孫悟空'); Demo::insert($team, $node2); // Demo::show($team); $node3 = new Demo(5, '白龍馬'); Demo::push($team, $node3); // Demo::show($team); $node4 = new Demo(3, '豬八戒'); Demo::insert($team, $node4); // Demo::show($team); $node5 = new Demo(4, '沙和尚'); Demo::insert($team, $node5); // Demo::show($team); $node4->name = '豬悟能';//php對象傳引用,所以Demo::edit沒有必要 // unset($node4); // $node4 = new Demo(3, '豬悟能'); // Demo::edit($team, $node4); Demo::pop($team, $node1); Demo::show($team);
以上就是本文的全部內(nèi)容,希望對大家實(shí)現(xiàn)php單鏈表有所幫助。
您可能感興趣的文章:
- php實(shí)現(xiàn)單鏈表的實(shí)例代碼
- 淺談PHP鏈表數(shù)據(jù)結(jié)構(gòu)(單鏈表)
- PHP單鏈表的實(shí)現(xiàn)代碼
- PHP鏈表操作簡單示例
- php解決約瑟夫環(huán)示例
- 約瑟夫環(huán)問題的PHP實(shí)現(xiàn) 使用PHP數(shù)組內(nèi)部指針操作函數(shù)
- PHP使用棧解決約瑟夫環(huán)問題算法示例
- PHP基于遞歸實(shí)現(xiàn)的約瑟夫環(huán)算法示例
- php實(shí)現(xiàn)約瑟夫問題的方法小結(jié)
- php約瑟夫問題解決關(guān)于處死犯人的算法
- PHP實(shí)現(xiàn)的基于單向鏈表解決約瑟夫環(huán)問題示例
相關(guān)文章
Laravel框架實(shí)現(xiàn)redis集群的方法分析
這篇文章主要介紹了Laravel框架實(shí)現(xiàn)redis集群的方法,簡單分析了Laravel框架redis數(shù)據(jù)庫集群功能設(shè)置步驟、相關(guān)操作技巧與注意事項(xiàng),需要的朋友可以參考下2017-09-09destoon利用Rewrite規(guī)則設(shè)置網(wǎng)站安全
這篇文章主要介紹了destoon利用Rewrite規(guī)則設(shè)置網(wǎng)站安全,需要的朋友可以參考下2014-06-06ThinkPHP無限級分類原理實(shí)現(xiàn)留言與回復(fù)功能實(shí)例
這篇文章主要介紹了ThinkPHP無限級分類原理實(shí)現(xiàn)留言與回復(fù)功能實(shí)例,并附帶有完整的項(xiàng)目源碼下載供大家學(xué)習(xí)參考,非常具有實(shí)用價值,需要的朋友可以參考下2014-10-10PHP設(shè)計模式之裝飾器(裝飾者)模式(Decorator)入門與應(yīng)用詳解
這篇文章主要介紹了PHP設(shè)計模式之裝飾器(裝飾者)模式(Decorator),結(jié)合實(shí)例形式詳細(xì)分析了PHP裝飾者模式的概念、原理、用法及相關(guān)操作注意事項(xiàng),需要的朋友可以參考下2019-12-12