php实现单链表,php实现单链id = $id; $this->name = $name; } static public function show ($head) { $cur = $head; while ($cur->next) { echo $cur->next->id,'###',$cur->next->name,'
'; $cur = $cur->next; } echo ''; } //尾插法 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);
http://www.bkjia.com/phpjc/1139360.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/1139360.htmltecharticlephp实现单链表,php实现单链 ? php /* * * 单链表 */ class demo{ private $id ; public $name ; public $next ; public function __construct ( $id = '', $name = '' ) { $this...