在此方法中,循环双向链表的最后一个节点被删除。例如 - 如果给定列表是 10->20->30->40 并且最后一个节点被删除,则列表将变为 10->20->30。
删除循环双向链表的最后一个节点涉及检查头为空。如果不为空且仅包含一个节点,则删除头节点。如果列表包含多个节点,则遍历到列表的倒数第二个节点并将其与头链接。最后删除最后一个节点。
函数pop_back就是为此目的而创建的。这是一个3步过程。
public function pop_back() {
if($this->head != null) {
//1.如果头不为空并且头的下一个
//是头,释放头
if($this->head->next == $this->head) {
$this->head = null;
} else {
//2。否则,遍历到倒数第二个
//列表元素
$temp = new Node();
$temp = $this->head;
while($temp->next->next != $this->head)
$temp = $temp->next;
//3。更新头部和第二个链接
//最后一个节点,并删除最后一个节点
$lastNode = $temp->next;
$temp->next = $this->head;
$this->head->prev = $temp;
$lastNode = null;
}
}
}
下面是一个完整的程序,它使用上面讨论的删除循环双向链表的最后一个节点的概念。
<?php
//节点结构
class Node {
public $data;
public $next;
public $prev;
}
class LinkedList {
public $head;
public function __construct(){
$this->head = null;
}
//在列表末尾添加新元素
public function push_back($newElement) {
$newNode = new Node();
$newNode->data = $newElement;
$newNode->next = null;
$newNode->prev = null;
if($this->head == null) {
$this->head = $newNode;
$newNode->next = $this->head;
} else {
$temp = new Node();
$temp = $this->head;
while($temp->next !== $this->head) {
$temp = $temp->next;
}
$temp->next = $newNode;
$newNode->next = $this->head;
$newNode->prev = $temp;
$this->head->prev = $newNode;
}
}
//删除链表最后一个节点
public function pop_back() {
if($this->head != null) {
if($this->head->next == $this->head) {
$this->head = null;
} else {
$temp = new Node();
$temp = $this->head;
while($temp->next->next != $this->head)
$temp = $temp->next;
$lastNode = $temp->next;
$temp->next = $this->head;
$this->head->prev = $temp;
$lastNode = null;
}
}
}
//显示列表内容
public function PrintList() {
$temp = new Node();
$temp = $this->head;
if($temp != null) {
echo "The list contains: ";
while(true) {
echo $temp->data." ";
$temp = $temp->next;
if($temp == $this->head)
break;
}
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_back();
$MyList->PrintList();
?>
上面的代码将给出以下输出:
The list contains: 10 20 30 40
The list contains: 10 20 30