您好,登錄后才能下訂單哦!
這篇文章主要為大家詳細介紹了使用PHP怎么實現鏈表的定義與反轉,文中示例代碼介紹的非常詳細,具有一定的參考價值,發(fā)現的小伙伴們可以參考一下:
php是一個嵌套的縮寫名稱,指的是英文超級文本預處理語言(php:Hypertext Preprocessor)的縮寫,它的語法混合了C、Java、Perl以及php自創(chuàng)新的語法,主要用來做網站開發(fā),許多小型網站都用php開發(fā),因為php是開源的,從而使得php經久不衰。
PHP定義鏈表及添加、移除、遍歷等操作:
<?php class Node { private $Data;//節(jié)點數據 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é)點的數據 * */ 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é)點的數據 * */ 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("數據集為空!"); return; } while($node->getNext()!=null) { print('['.$node->getNext()->getData().'] -> '); if($node->getNext()->getNext()==null){break;} $node=$node->getNext(); } } /** *@author MzXy *@param $data--要訪問的節(jié)點的數據 * @param 此方法只是演示不具有實際意義 * */ public function getAt($data) { $node=$this->header->getNext(); if($node->getNext()==null){ print("數據集為空!"); return; } while($node->getData()!=$data) { if($node->getNext()==null){break;} $node=$node->getNext(); } return $node->getData(); } /** *@author MzXy *@param $value--需要更新的節(jié)點的原數據 --$initial---更新后的數據 * */ public function update($initial,$value) { $node=$this->header->getNext(); if($node->getNext()==null){ print("數據集為空!"); 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. 常用的方法:左右交替,下一個結點保存,上一個結點替換該結點的下個結點。實現替換。
代碼:
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
;所以不會出現遍歷不完的情況
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怎么實現鏈表的定義與反轉,如何覺得億速云網站的內容還不錯,歡迎將億速云網站推薦給身邊好友。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。