PHP 数据结构

在此方法中,删除双向链表中具有指定键(值)的第一个节点。例如 - 如果给定的 List 是 10->20->30->10->20 并且删除第一次出现的 20,则 List 变为 10->30->10->20。

首先,检查双向链表是否为空值。如果 head 不为 null 并且其中存储的值等于 key,则将 head next 作为 head,删除前一个 head,并调整 head 的 previous。否则,遍历到value等于key的节点的前一个节点,并调整链接。

函数pop_first就是为此目的而创建的。这是一个3步过程

public function pop_first($key) {     
  $temp = $this->head;
  //1.检查头部是否不为空
  if($temp != null) {
    
    //2。如果 head 不为 null 并且值存储在 head 中
    //等于key,将head下一个作为head,
    //删除前一个头,调整前一个头
    if($temp->data == $key) {
      $nodeToDelete = $this->head;
      $this->head = $this->head->next;
      $nodeToDelete = null;
      if ($this->head != null)
        $this->head->prev = null;
    } else {

      //3。否则,遍历到之前的节点
      //value等于key的节点,并调整链接
      while($temp->next != null) {
        if($temp->next->data == $key) {
          $nodeToDelete = $temp->next;
          $temp->next = $temp->next->next;
          if($temp->next != null)
            $temp->next->prev = $temp;   
          $nodeToDelete = null;
          break; 
        }
        $temp = $temp->next;
      }
    }
  }
} 

下面是一个完整的程序,它使用上面讨论的概念来删除第一次出现的指定键(如果存在)双向链表的。

<?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;
    } else {
      $temp = new Node();
      $temp = $this->head;
      while($temp->next != null) {
        $temp = $temp->next;
      }
      $temp->next = $newNode;
      $newNode->prev = $temp;
    }    
  }

  //通过key删除第一个节点
  public function pop_first($key) {     
    $temp = $this->head;
    if($temp != null) {
      if($temp->data == $key) {
        $nodeToDelete = $this->head;
        $this->head = $this->head->next;
        $nodeToDelete = null;
        if ($this->head != null)
          $this->head->prev = null;
      } else {
        while($temp->next != null) {
          if($temp->next->data == $key) {
            $nodeToDelete = $temp->next;
            $temp->next = $temp->next->next;
            if($temp->next != null)
              $temp->next->prev = $temp;   
            $nodeToDelete = null;
            break; 
          }
          $temp = $temp->next;
        }
      }
    }
  } 

  //显示列表内容
  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(10);
$MyList->push_back(20);
$MyList->PrintList();

//删除第一次出现的20
$MyList->pop_first(20);
$MyList->PrintList();
?>

上面的代码将给出以下输出:

The list contains: 10 20 30 10 20 
The list contains: 10 30 10 20