PHP 数据结构

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

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

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

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

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

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

<?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;
    }    
  }

  //通过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;
      } else {
        while($temp->next != null) {
          if($temp->next->data == $key) {
            $nodeToDelete = $temp->next;
            $temp->next = $temp->next->next;
            $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