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

php链表用法实例分析

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-10 10:39:39 浏览: 评论:0 

这篇文章主要介绍了php链表用法,实例分析了php创建链表及针对链表节点的增加、删除、更新与遍历等常用操作,需要的朋友可以参考下。

本文实例讲述了php链表用法,分享给大家供大家参考,具体如下:

这里简单介绍了php链表的基本用法,包括链表节点的创建、遍历、更新等操作。

  1. <?php 
  2. /** 
  3.  * @author MzXy 
  4.  * @copyright 2011 
  5.  * @param PHP链表 
  6.  */ 
  7. /** 
  8. * 
  9. *节点类 
  10. */ 
  11. class Node 
  12.   private $Data;//节点数据 
  13.   private $Next;//下一节点 
  14.   public function setData($value){ 
  15.     $this->Data=$value
  16.   } 
  17.   public function setNext($value){ 
  18.      $this->Next=$value
  19.   }   
  20.   public function getData(){ 
  21.     return $this->Data; 
  22.   } 
  23.   public function getNext(){ 
  24.     return $this->Next; 
  25.   } 
  26.   public function __construct($data,$next){ 
  27.     $this->setData($data); 
  28.     $this->setNext($next); 
  29.   } 
  30. }//功能类 
  31. class LinkList 
  32.   private $header;//头节点 
  33.   private $size;//长度 
  34.   public function getSize(){ 
  35.     $i=0; 
  36.     $node=$this->header; 
  37.     while($node->getNext()!=null) 
  38.     {  $i++; 
  39.       $node=$node->getNext(); 
  40.     } 
  41.    return $i
  42.   } 
  43.   public function setHeader($value){ 
  44.     $this->header=$value
  45.   } 
  46.   public function getHeader(){ 
  47.     return $this->header; 
  48.   } 
  49.   public function __construct(){ 
  50.      header("content-type:text/html; charset=utf-8"); 
  51.     $this->setHeader(new Node(null,null)); 
  52.   } 
  53.   /** 
  54.   *@author MzXy 
  55.   *@param $data--要添加节点的数据 
  56.   *  
  57.   */ 
  58.   public function add($data
  59.   { 
  60.     $node=$this->header; 
  61.     while($node->getNext()!=null) 
  62.     { 
  63.       $node=$node->getNext(); 
  64.     } 
  65.     $node->setNext(new Node($data,null)); 
  66.   } 
  67.    /** 
  68.   *@author MzXy 
  69.   *@param $data--要移除节点的数据 
  70.   *  
  71.   */ 
  72.   public function removeAt($data
  73.   { 
  74.     $node=$this->header; 
  75.     while($node->getData()!=$data
  76.     { 
  77.       $node=$node->getNext(); 
  78.     } 
  79.     $node->setNext($node->getNext()); 
  80.     $node->setData($node->getNext()->getData()); 
  81.   } 
  82.    /** 
  83.   *@author MzXy 
  84.   *@param 遍历 
  85.   *  
  86.   */ 
  87.   public function get() 
  88.   { 
  89.     $node=$this->header; 
  90.     if($node->getNext()==null){ 
  91.       print("数据集为空!"); 
  92.       return
  93.     } 
  94.     while($node->getNext()!=null) 
  95.     { 
  96.       print($node->getNext()->getData()); 
  97.       if($node->getNext()->getNext()==null){break;} 
  98.       $node=$node->getNext(); 
  99.     } 
  100.   } 
  101.    /** 
  102.   *@author MzXy 
  103.   *@param $data--要访问的节点的数据 
  104.   * @param 此方法只是演示不具有实际意义 
  105.   *  
  106.   */ 
  107.   public function getAt($data
  108.   { 
  109.     $node=$this->header->getNext(); 
  110.      if($node->getNext()==null){ 
  111.       print("数据集为空!"); 
  112.       return
  113.     } 
  114.     while($node->getData()!=$data
  115.     { 
  116.       if($node->getNext()==null){break;} 
  117.       $node=$node->getNext(); 
  118.     } 
  119.     return $node->getData();     
  120.   } 
  121.    /** 
  122.   *@author MzXy 
  123.   *@param $value--需要更新的节点的原数据 --$initial---更新后的数据 
  124.   *  
  125.   */ 
  126.   public function update($initial,$value
  127.   { 
  128.      $node=$this->header->getNext(); 
  129.      if($node->getNext()==null){ 
  130.       print("数据集为空!"); 
  131.       return
  132.     } 
  133.     while($node->getData()!=$data
  134.     { 
  135.       if($node->getNext()==null){break;} 
  136.       $node=$node->getNext(); 
  137.     } 
  138.      $node->setData($initial);    
  139.   } 
  140. ?>

Tags: php链表

分享到: