PHP 数据结构

在此方法中,一个新节点被插入到链表的末尾。例如 - 如果给定的列表是 10->20->30 并且在末尾添加了新元素 100,则链接列表将变为 10->20->30->100。

在链表末尾插入新节点非常容易。首先,创建一个具有给定元素的新节点。然后通过将最后一个节点链接到新节点将其添加到列表的末尾。

链表 - 在末尾添加节点

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

public function push_back($newElement) {
  
  //1.分配节点
  $newNode = new Node();
  
  //2。分配数据元素
  $newNode->data = $newElement;
  
  //3。将 null 分配给新节点的下一个
  $newNode->next = null; 
  
  //4。检查链表是否为空,
  //如果为空则将新节点作为头
  if($this->head == null) {
    $this->head = $newNode;
  } else {
    
    //5。否则,遍历到最后一个节点
    $temp = new Node();
    $temp = $this->head;
    while($temp->next != null) {
      $temp = $temp->next;
    }
    
    //6。将最后一个节点的下一个节点更改为新节点
    $temp->next = $newNode;
  }    
}

下面是一个完整的程序,它使用上面讨论的概念在链表的末尾插入新节点。

<?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 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->PrintList();
?>

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

The list contains: 10 20 30