//链表节点
class node {
public $id; //节点id
public $name; //节点名称
public $next; //下一节点
public function __construct($id, $name) {
$this->id = $id;
$this->name = $name;
$this->next = null;
}
}
//单链表
class singelLinkList {
private $header; //链表头节点
//構築方法
public function __construct($id = null, $name = null) {
$this->header = new node ( $id, $name, null );
}
//获取链表長度
public function getLinkLength() {
$i = 0;
$current = $this->header;
while ( $current->next != null ) {
$i ++;
$current = $current->next;
}
$i を返します。
}
//追加节量据置
public function addLink($node) {
$current = $this->header;
while ( $current->next != null ) {
if ($current->next->id > $node->id) {
Break;
}
$current = $current->next;
}
$node->next = $current->next;
$current->next = $node;
}
//删除链表节点
public function delLink($id) {
$current = $this->header;
$flag = false;
while ( $current->next != null ) {
if ($current->next->id == $id) {
$flag = true;
休憩。
}
$current = $current->next;
}
if ($flag) {
$current->next = $current->next->next;
} else {
echo "未找到id=" . $id . 「のポイント!echo(リンクされたリスト);リンクされたリストは空です!";
return;
$current->next; }
| If ($current-> id == $id) {
>
$lists = new singelLinkList ();
$lists->addLink (新しいノード ( 5, 'eeeeee' ) );
$lists->addLink ( 新しいノード ( 1, 'aaaaaa' ) ); ->addLink (新しいノード ( 6, 'ffffff' ) );
$lists->addLink ( 新しいノード ( 4, 'dddddd' ) );
$lists->addLink ( 新しいノード ( 3, 'cccccc) ' ) );
$lists->addLink ( 新しいノード ( 2, 'bbbbbb' ) );
echo "
------- -ノードの削除--------------
";
$lists->delLink (5);
$lists->getLinkList ();
echo "
----------ノード名を更新-----
";
$lists->updateLink ( 3 , "222222" );
$lists->getLinkList();
echo "
----------ノード名を取得-----
";
echo $lists->getLinkNameById ( 5);
echo "
----------リンクされたリストの長さを取得します--------------
"
echo $lists- >getLinkLength ( )?>
;