在此方法中,链表的第一个节点被删除。例如 - 如果给定列表是 10->20->30->40 并且删除第一个节点,则列表将变为 20->30->40。
删除链表的第一个节点非常容易。如果 head 不为空,则创建一个指向 head 的临时节点,并将 head 移动到下一个 head。然后删除临时节点。
函数pop_front就是为此目的而创建的。这是一个3步过程。
public function pop_front() {
if($this->head != null) {
//1.如果 head 不为空,则创建一个
//指向头的临时节点
$temp = $this->head;
//2。将头移动到下一个头
$this->head = $this->head->next;
//3。删除临时节点
$temp = null;
}
}
下面是一个完整的程序,它使用了上面讨论的删除链表第一个节点的概念。
<?php
//节点结构
class Node {
public $data;
public $next;
}
class LinkedList {
public $head;
public function __construct(){
$this->head = null;
}
//在列表末尾添加新元素
public function push_back($newElement) {
$newNode = new Node();
$newNode->data = $newElement;
$newNode->next = null;
if($this->head == null) {
$this->head = $newNode;
} else {
$temp = new Node();
$temp = $this->head;
while($temp->next != null) {
$temp = $temp->next;
}
$temp->next = $newNode;
}
}
//删除链表第一个节点
public function pop_front() {
if($this->head != null) {
$temp = $this->head;
$this->head = $this->head->next;
$temp = null;
}
}
//显示列表内容
public function PrintList() {
$temp = new Node();
$temp = $this->head;
if($temp != null) {
echo "The list contains: ";
while($temp != null) {
echo $temp->data." ";
$temp = $temp->next;
}
echo "\n";
} else {
echo "The list is empty.\n";
}
}
};
//测试代码
$MyList = new LinkedList();
//在列表中添加四个元素。
$MyList->push_back(10);
$MyList->push_back(20);
$MyList->push_back(30);
$MyList->push_back(40);
$MyList->PrintList();
//删除第一个节点
$MyList->pop_front();
$MyList->PrintList();
?>
上面的代码将给出以下输出:
The list contains: 10 20 30 40
The list contains: 20 30 40