PHP 数据结构

该方法删除循环双向链表中指定位置的节点。例如 - 如果给定列表是 10->20->30 并且删除了第 2 个nd 节点,则列表将变为 10->20。

首先,创建两个节点 temp 和 nodeToDelete 分别遍历列表并跟踪要删除的节点。然后统计列表中元素的个数,检查指定位置是否有效(必须在[1,n]范围内,其中n是列表中元素的数量)。如果指定的有效位置为 1 并且 head 是列表中唯一的元素,则将 head 设为 null。如果指定的有效位置为 1 并且列表包含多个元素,则将 head 的下一个作为新的 head 并相应地调整链接。如果指定的有效位置大于1,则遍历给定位置之前的节点并删除给定节点并相应调整链接。

循环双向链表- 删除节点

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

public function pop_at($position) {     

  //1.创建两个节点 - temp 和 nodeToDelete
  //遍历并跟踪要删除的节点
  $nodeToDelete = $this->head;
  $temp = $this->head;
  $NoOfElements = 0;

  //2。查找列表中元素的数量
  if($temp != null) {
    $NoOfElements++;
    $temp = $temp->next;
  }
  while($temp != $this->head) {
    $NoOfElements++;
    $temp = $temp->next;
  }

  //3。检查指定位置是否有效
  if($position < 1 || $position > $NoOfElements) {
    echo "\nInvalid position.";
  } else if ($position == 1) {
  
  //4。如果位置为 1 并且 head 是唯一的元素
  // 在列表中,然后将其设为空,否则设为下一个
   // 将头部作为新头部并相应地调整链接
    if($this->head->next == $this->head) {
      $this->head = null;
    } else {
      while($temp->next != $this->head)
        $temp = $temp->next;
      $this->head = $this->head->next;
      $temp->next = $this->head; 
      $this->head->prev = $temp;
      $nodeToDelete = null; 
    }
  } else {

   //5。否则,遍历到之前的节点
   //给定的位置并删除给定的
   //节点并相应调整链接
    $temp = $this->head;
    for($i = 1; $i < $position-1; $i++) 
      $temp = $temp->next;
    $nodeToDelete = $temp->next;
    $temp->next = $temp->next->next;
    $temp->next->prev = $temp;
    $nodeToDelete = 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_at($position) {     
    $nodeToDelete = $this->head;
    $temp = $this->head;
    $NoOfElements = 0;

    if($temp != null) {
      $NoOfElements++;
      $temp = $temp->next;
    }
    while($temp != $this->head) {
      $NoOfElements++;
      $temp = $temp->next;
    }

    if($position < 1 || $position > $NoOfElements) {
      echo "\nInvalid position.";
    } else if ($position == 1) {
      if($this->head->next == $this->head) {
        $this->head = null;
      } else {
        while($temp->next != $this->head)
          $temp = $temp->next;
        $this->head = $this->head->next;
        $temp->next = $this->head; 
        $this->head->prev = $temp;
        $nodeToDelete = null; 
      }
    } else {
      $temp = $this->head;
      for($i = 1; $i < $position-1; $i++) 
        $temp = $temp->next;
      $nodeToDelete = $temp->next;
      $temp->next = $temp->next->next;
      $temp->next->prev = $temp;
      $nodeToDelete = 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->PrintList();

//删除位置2的元素
$MyList->pop_at(2);
$MyList->PrintList();

//删除位置1的元素
$MyList->pop_at(1);
$MyList->PrintList(); 
?>

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

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