首页 > 代码库 > PHP 实现单链表
PHP 实现单链表
<?php
header("Content-type:text/html;charset=utf-8");//链表节点
class node {
public static $count = -1; //节点id
public $name; //节点名称
public $next; //下一节点
public $id;
public function __construct($name) {
$this->id = self::$count;
$this->name = $name;
$this->next = null;
self::$count += 1;
}
}
//单链表
class singelLinkList {
private $header;
private $current;
public $count;
//构造方法
public function __construct($data = http://www.mamicode.com/null) {
$this->header = new node ($data);
$this->current = $this->header;
$this->count = 0;
}
//添加节点数据
public function addLink($node) {
if($this->current->next != null)
$this->current = $this->current->next;
$this->count++;
$node->next = $this->current->next;
$this->current->next = $node;
}
//删除链表节点
public function delLink($id) {
$current = $this->header;
$flag = false;
while ( $current->next != null ) {
if ($current->next->id == $id) {
$flag = true;
break;
}
$current = $current->next;
}
if ($flag) {
$this->count--;
$current->next = $current->next->next;
} else {
echo "未找到id=" . $id . "的节点!<br>";
}
}
//获取链表
public function getLinkList() {
$this->checkNull();
$current = $this->header;
while ( $current->next != null ) {
echo ‘id:‘ . $current->next->id . ‘ name:‘ . $current->next->name . "<br>";
if ($current->next->next == null) {
break;
}
$current = $current->next;
}
}
//获取长度
public function getLinkLength()
{
echo $this->count;
}
//获取当前节点
public function getCurrent()
{
$this->checkNull();
echo ‘当前节点id:‘ . $this->current->next->id . ‘ name:‘ . $this->current->next->name . "<br>";
}
//判断是否为空
public function checkNull()
{
if ($this->header->next == null) {
echo "链表为空!";
exit;
}
}
//获取节点名字
public function getLinkById($id) {
$this->checkNull();
$current = $this->header;
while ( $current->next != null ) {
if ($current->id == $id) {
break;
}
$current = $current->next;
}
echo ‘修改后id:‘ . $current->id . ‘ name:‘ . $current->name . "<br>";
}
//更新节点名称
public function updateLink($id, $name) {
$this->checkNull();
$current = $this->header;
while ( $current->next != null ) {
if ($current->id == $id) {
break;
}
$current = $current->next;
}
return $current->name = $name;
}
}
$list = new singelLinkList ();
$list->addLink ( new node (‘aaaaaa‘ ) );
$list->addLink ( new node (‘bbbbbb‘ ) );
$list->addLink ( new node (‘cccccc‘ ) );
$list->addLink ( new node (‘dddddd‘ ) );
echo "所有链表节点:<br/>";
$list->getLinkList();
echo "<br/>";
echo "当前链表末位节点:<br/>";
$list->getCurrent();
echo "<br/>";
echo "修改链表节点id为0的:<br/>";
$list->updateLink(0, ‘2222222‘);
echo "查找id为0的节点:<br/>";
$list->getLinkById(0);
echo "<br/>";
echo "删除链表节点id为0:<br/>";
$list->delLink(0);
echo "所有链表节点:<br/>";
$list->getLinkList();
echo "<br/>";
echo "所有链表节点:<br/>";
$list->getLinkLength ();
?>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。