当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP实现单链表翻转操作示例

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-22 13:05:32 浏览: 评论:0 

这篇文章主要介绍了PHP实现单链表翻转操作,结合实例形式分析了php单链表的定义、遍历、递归、翻转等相关操作技巧,需要的朋友可以参考下。

本文实例讲述了PHP实现单链表翻转操作,分享给大家供大家参考,具体如下:

当一个序列中只含有指向它的后继结点的链接时,就称该链表为单链表。

这里给出了一个单链表的定义及翻转操作方法:

  1. <?php 
  2. /** 
  3.  * @file reverseLink.php 
  4.  * @author showersun 
  5.  * @date 2016/03/01 10:33:25 
  6.  **/ 
  7. class Node{ 
  8.   private $value
  9.   private $next
  10.   public function __construct($value=null){ 
  11.     $this->value = $value
  12.   } 
  13.   public function getValue(){ 
  14.     return $this->value; 
  15.   } 
  16.   public function setValue($value){ 
  17.     $this->value = $value
  18.   } 
  19.   public function getNext(){ 
  20.     return $this->next; 
  21.   } 
  22.   public function setNext($next){ 
  23.     $this->next = $next
  24.   } 
  25. //遍历,将当前节点的下一个节点缓存后更改当前节点指针  
  26. function reverse($head){ 
  27.   if($head == null){ 
  28.     return $head
  29.   } 
  30.   $pre = $head;//注意:对象的赋值 
  31.   $cur = $head->getNext(); 
  32.   $next = null; 
  33.   while($cur != null){ 
  34.     $next = $cur->getNext(); 
  35.     $cur->setNext($pre); 
  36.     $pre = $cur
  37.     $cur = $next
  38.   } 
  39.   //将原链表的头节点的下一个节点置为null,再将反转后的头节点赋给head  
  40.   $head->setNext(null); 
  41.   $head = $pre
  42.   return $head
  43. //递归,在反转当前节点之前先反转后续节点  
  44. function reverse2($head){ 
  45.   if (null == $head || null == $head->getNext()) { 
  46.     return $head
  47.   } 
  48.   $reversedHead = reverse2($head->getNext()); 
  49.   $head->getNext()->setNext($head); 
  50.   $head->setNext(null); 
  51.   return $reversedHead
  52. function test(){ 
  53.   $head = new Node(0); 
  54.   $tmp = null; 
  55.   $cur = null; 
  56.   // 构造一个长度为10的链表,保存头节点对象head   
  57.   for($i=1;$i<10;$i++){ 
  58.     $tmp = new Node($i); 
  59.     if($i == 1){ 
  60.       $head->setNext($tmp); 
  61.     }else
  62.       $cur->setNext($tmp); 
  63.     } 
  64.     $cur = $tmp
  65.   } 
  66.   //print_r($head);exit; 
  67.   $tmpHead = $head
  68.   while($tmpHead != null){ 
  69.     echo $tmpHead->getValue().' '
  70.     $tmpHead = $tmpHead->getNext(); 
  71.   } 
  72.   echo "\n"
  73.   //$head = reverse($head); 
  74.   $head = reverse2($head); 
  75.   while($head != null){ 
  76.     echo $head->getValue().' '
  77.     $head = $head->getNext(); 
  78.   } 
  79. test(); 
  80. ?> 

运行结果:

0 1 2 3 4 5 6 7 8 9 9 8 7 6 5 4 3 2 1 0 

Tags: PHP单链表翻转

分享到: