php單鏈表實現(xiàn)代碼分享
更新時間:2016年07月04日 15:40:10 作者:什么哥
這篇文章主要為大家分享了php單鏈表實現(xiàn)代碼,代碼簡潔,感興趣的小伙伴們可以參考一下
本文實例為大家分享了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)容,希望對大家實現(xiàn)php單鏈表有所幫助。
您可能感興趣的文章:
相關(guān)文章
destoon利用Rewrite規(guī)則設(shè)置網(wǎng)站安全
這篇文章主要介紹了destoon利用Rewrite規(guī)則設(shè)置網(wǎng)站安全,需要的朋友可以參考下2014-06-06
ThinkPHP無限級分類原理實現(xiàn)留言與回復(fù)功能實例
這篇文章主要介紹了ThinkPHP無限級分類原理實現(xiàn)留言與回復(fù)功能實例,并附帶有完整的項目源碼下載供大家學(xué)習(xí)參考,非常具有實用價值,需要的朋友可以參考下2014-10-10
PHP設(shè)計模式之裝飾器(裝飾者)模式(Decorator)入門與應(yīng)用詳解
這篇文章主要介紹了PHP設(shè)計模式之裝飾器(裝飾者)模式(Decorator),結(jié)合實例形式詳細分析了PHP裝飾者模式的概念、原理、用法及相關(guān)操作注意事項,需要的朋友可以參考下2019-12-12

