主頁 > 知識庫 > PHP實現(xiàn)鏈表的定義與反轉功能示例

PHP實現(xiàn)鏈表的定義與反轉功能示例

熱門標簽:沈陽人工智能電銷機器人公司 拉薩打電話機器人 電銷機器人-快迭智能 智能外呼電銷系統(tǒng) h5 地圖標注 高識別電銷機器人 哈爾濱400電話辦理到易號網(wǎng) 寶安400電話辦理 合肥外呼系統(tǒng)app

本文實例講述了PHP實現(xiàn)鏈表的定義與反轉功能。分享給大家供大家參考,具體如下:

PHP定義鏈表及添加、移除、遍歷等操作:

?php
class Node
{
  private $Data;//節(jié)點數(shù)據(jù)
  private $Next;//下一節(jié)點
 
  public function setData($value){
    $this->Data=$value;
  }
 
  public function setNext($value){
     $this->Next=$value;
  }  
 
  public function getData(){
    return $this->Data;
  }
 
  public function getNext(){
    return $this->Next;
  }
 
  public function __construct($data,$next){
    $this->setData($data);
    $this->setNext($next);
  }
}
class LinkList
{
  private $header;//頭節(jié)點
  private $size;//長度
  public function getSize()
 {
    $i=0;
    $node=$this->header;
    while($node->getNext()!=null)
    {  
  $i++;
      $node=$node->getNext();
    }
    return $i;
  }
 
  public function setHeader($value){
    $this->header=$value;
  }
 
  public function getHeader(){
    return $this->header;
  }
 
  public function __construct(){
    header("content-type:text/html; charset=utf-8");
    $this->setHeader(new Node(null,null));
  }
  /**
  *@author MzXy
  *@param $data--要添加節(jié)點的數(shù)據(jù)
  * 
  */
  public function add($data)
  {
    $node=$this->header;
    while($node->getNext()!=null)
    {
      $node=$node->getNext();
    }
    $node->setNext(new Node($data,null));
  }
   /**
  *@author MzXy
  *@param $data--要移除節(jié)點的數(shù)據(jù)
  * 
  */
  public function removeAt($data)
  {
    $node=$this->header;
    while($node->getData()!=$data)
    {
      $node=$node->getNext();
    }
    $node->setNext($node->getNext());
    $node->setData($node->getNext()->getData());
  }
   /**
  *@author MzXy
  *@param 遍歷
  * 
  */
  public function get()
  {
    $node=$this->header;
    if($node->getNext()==null){
      print("數(shù)據(jù)集為空!");
      return;
    }
    while($node->getNext()!=null)
    {
      print('['.$node->getNext()->getData().'] -> ');
      if($node->getNext()->getNext()==null){break;}
      $node=$node->getNext();
    }
  }
   /**
  *@author MzXy
  *@param $data--要訪問的節(jié)點的數(shù)據(jù)
  * @param 此方法只是演示不具有實際意義
  * 
  */
  public function getAt($data)
  {
    $node=$this->header->getNext();
  if($node->getNext()==null){
      print("數(shù)據(jù)集為空!");
      return;
    }
    while($node->getData()!=$data)
    {
      if($node->getNext()==null){break;}
      $node=$node->getNext();
    }
    return $node->getData();    
  }
   /**
  *@author MzXy
  *@param $value--需要更新的節(jié)點的原數(shù)據(jù) --$initial---更新后的數(shù)據(jù)
  * 
  */
  public function update($initial,$value)
  {
     $node=$this->header->getNext();
 if($node->getNext()==null){
     print("數(shù)據(jù)集為空!");
      return;
    }
    while($node->getData()!=$data)
    {
      if($node->getNext()==null){break;}
      $node=$node->getNext();
    }
 $node->setData($initial);   
  }
}
$lists = new LinkList();
$lists -> add(1);
$lists -> add(2);
$lists -> get();
echo 'pre>';
print_r($lists);
echo '/pre>';
?>

反轉鏈表操作:

1. 常用的方法:左右交替,下一個結點保存,上一個結點替換該結點的下個結點。實現(xiàn)替換。

代碼:

function ReverseList($pHead)
{
  // write code here
  if($pHead == null || $pHead->next == null){
    return $pHead;
  }
  $p = $pHead;
  $q = $pHead->next;
  $pHead->next = null;//$pHead 變?yōu)槲仓羔?
  while($q){
    $r = $q->next;
    $q->next = $p;
    $p = $q;
    $q = $r;
  }
  return $p;
}

2. 使用遞歸方法。三個結點,頭結點,首節(jié)點,第二個結點。把首節(jié)點后面的所有結點當成第二個結點,依次循環(huán)下去,由于要滿足 $pHead != null || $pHead->next != null ;所以不會出現(xiàn)遍歷不完的情況

function ReverseList($pHead)
{
  // write code here
  if($pHead == null || $pHead->next == null){
    return $pHead;
  }
  $res = ReverseList($pHead->next);
  $pHead->next->next = $pHead;
  $pHead->next = null;
  return $res;
}

更多關于PHP相關內(nèi)容感興趣的讀者可查看本站專題:《PHP數(shù)據(jù)結構與算法教程》、《php程序設計算法總結》、《php字符串(string)用法總結》、《PHP數(shù)組(Array)操作技巧大全》、《PHP常用遍歷算法與技巧總結》及《PHP數(shù)學運算技巧總結》

希望本文所述對大家PHP程序設計有所幫助。

您可能感興趣的文章:
  • php數(shù)組和鏈表的區(qū)別總結
  • PHP雙向鏈表定義與用法示例
  • php數(shù)據(jù)結構之順序鏈表與鏈式線性表示例
  • PHP實現(xiàn)合并兩個排序鏈表的方法
  • php數(shù)組指針操作詳解
  • php each 返回數(shù)組中當前的鍵值對并將數(shù)組指針向前移動一步實例
  • PHP7生產(chǎn)環(huán)境隊列Beanstalkd用法詳解
  • php使用redis的有序集合zset實現(xiàn)延遲隊列應用示例
  • php+redis實現(xiàn)消息隊列功能示例
  • PHP如何通過帶尾指針的鏈表實現(xiàn)''隊列''

標簽:巴中 成都 張家口 山東 威海 泰州 梅州 林芝

巨人網(wǎng)絡通訊聲明:本文標題《PHP實現(xiàn)鏈表的定義與反轉功能示例》,本文關鍵詞  PHP,實現(xiàn),鏈表,的,定義,與,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《PHP實現(xiàn)鏈表的定義與反轉功能示例》相關的同類信息!
  • 本頁收集關于PHP實現(xiàn)鏈表的定義與反轉功能示例的相關信息資訊供網(wǎng)民參考!
  • 推薦文章