当前位置:首页 > PHP教程 > php类库 > 列表

php实现的树形结构数据存取类实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-01 12:29:13 浏览: 评论:0 

这篇文章主要介绍了php实现的树形结构数据存取类,实例演示了以树形数据结构存取数据的实现方法,对于学习基于PHP的数据结构有一定的参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php实现的树形结构数据存取类。分享给大家供大家参考。

具体实现代码如下:

  1. <?php 
  2. /** 
  3.  * Tanphp framework 
  4.  * 
  5.  * 
  6.  * @category   Tanphp 
  7.  * @package    Data_structure 
  8.  * @version    $Id: Tree.php 25024 2012-11-26 22:22:22 tanbo $ 
  9.  */ 
  10.  
  11. /** 
  12.  * 树形结构数据存取类 
  13.  *  
  14.  * 用于对树形结构数据进行快速的存取 
  15.  *  
  16.  * @param array $arr 参数必须为标准的二维数组,包含索引字段(id)与表示树形结构的字段(path),如example中所示 
  17.  *  
  18.  * @example <code> 
  19.  * $arr = array( 
  20.  *  array( 'id' => 1, 'name' => 'php', 'path' => '1' ), 
  21.  *  array( 'id' => 3, 'name' => 'php1', 'path' => '1-3' ), 
  22.  *  array( 'id' => 2, 'name' => 'mysql', 'path' => '2' ), 
  23.  *  array( 'id' => 6, 'name' => 'mysql1', 'path' => '2-6' ), 
  24.  *  array( 'id' => 7, 'name' => 'mysql2', 'path' => '2-7' ), 
  25.  *  array( 'id' => 5, 'name' => 'php11', 'path' => '1-3-5' ), 
  26.  *  array( 'id' => 4, 'name' => 'php2', 'path' => '1-4' ), 
  27.  *   ); 
  28.  *  $cate = new Tree($arr); 
  29.  *   
  30.  *  $data = $cate->getChild(2); 
  31.  *   
  32.  *  print_r($data->toArray()); 
  33.  * </code> 
  34.  *  
  35.  */ 
  36. class Tree 
  37.     public  $_info;                             //节点信息 
  38.     public  $_child = array();                  //子节点 
  39.     private $_parent;                           //父节点 
  40.     private $_data;                             //当前操作的临时数据 
  41.     private static $_indexs         = array();  //所有节点的索引 
  42.     private static $_index_key      = 'id';     //索引键 
  43.     private static $_tree_key       = 'path';   //树形结构表达键 
  44.     private static $_tree_delimiter = '-';      //属性结构表达分割符 
  45.      
  46.     /** 
  47.      * 构造函数 
  48.      *  
  49.      * @param array $arr 
  50.      * @param boole $force_sort 如果为真,将会强制对$arr 进行排序 
  51.      * @return void 
  52.      */ 
  53.     public function __construct(array $arr = array(),  $force_sort=true) 
  54.     { 
  55.         if ($force_sort === true) { 
  56.             $arr=$this->_array_sort($arr, self::$_tree_key); 
  57.         } 
  58.         if (!emptyempty($arr)) { 
  59.             $this->_init($arr); 
  60.         } 
  61.     } 
  62.      
  63.     /** 
  64.      * 初始存储树形数据 
  65.      *  
  66.      * @param array $arr 
  67.      * @return void 
  68.      */ 
  69.     private function _init(array $arr
  70.     { 
  71.         foreach ($arr as $item) { 
  72.             $path        = $item[self::$_tree_key]; 
  73.             $paths       = explode(self::$_tree_delimiter$path); 
  74.             $count_paths = count($paths); 
  75.             $parent_id   = isset($paths[$count_paths-2]) ? $paths[$count_paths-2] : NULL; 
  76.              
  77.             if (   $count_paths>1                                   //如果有父级 
  78.                 && array_key_exists($parent_id, self::$_indexs)      //父级已经被存入索引 
  79.                 && self::$_indexs[$parent_id] instanceof Tree    //父级为Tree对象 
  80.             ) { 
  81.                 self::$_indexs[$parent_id]->addChild($item); 
  82.             } elseif ($count_paths == 1) { 
  83.                 $this->addChild($item); 
  84.             } else { 
  85.                 throw new Exception("path数据错误".var_export($item, true)); 
  86.             } 
  87.         } 
  88.          
  89.         //print_r(self::$_indexs); 
  90.     } 
  91.      
  92.     /** 
  93.      * 添加子节点 
  94.      *  
  95.      * @param array $item 
  96.      * @return void 
  97.      */ 
  98.     public function addChild(array $item$parent = NULL) 
  99.     { 
  100.         $child          = new Tree(); 
  101.         $child->_info   = $item
  102.         $child->_parent = $parent == NULL ? $this : $parent
  103.         $child->_parent->_child[] =  $child
  104.          
  105.         $this->_addIndex($item$child->_getSelf());  
  106.     } 
  107.      
  108.     /** 
  109.      * 添加节点到索引 
  110.      *  
  111.      * @param array $item 
  112.      * @param mix $value 
  113.      * @return void 
  114.      */ 
  115.     private function _addIndex(array $item$value
  116.     { 
  117.         if (array_key_exists(self::$_index_key$item) && is_int($item[self::$_index_key])) { 
  118.             self::$_indexs[$item[self::$_index_key]] = $value
  119.         } else { 
  120.             throw new Exception("id字段不存在或者不为字符串"); 
  121.         } 
  122.     } 
  123.      
  124.     /** 
  125.      * 获取对自己的引用 
  126.      *  
  127.      * @return Tree object quote 
  128.      */ 
  129.     private function _getSelf() 
  130.     { 
  131.         return $this
  132.     } 
  133.      
  134.     /** 
  135.      * 获取指定id的节点的子节点 
  136.      *  
  137.      * @param int $id 
  138.      * @return Tree object 
  139.      */ 
  140.     public function getChild($id
  141.     { 
  142.         $data       = self::$_indexs[$id]->_child; 
  143.         $this->_data = $data
  144.         return $this
  145.     } 
  146.      
  147.     /** 
  148.      * 获取指定id的节点的父节点 
  149.      *  
  150.      * @param int $id 
  151.      * @return Tree object 
  152.      */ 
  153.     public function getParent($id
  154.     { 
  155.         $data = self::$_indexs[$id]->_parent; 
  156.         $this->_data = $data
  157.         return $this
  158.     } 
  159.      
  160.     /** 
  161.      * 获取指定id的节点的同级节点 
  162.      * 
  163.      * @param int $id 
  164.      * @return Tree object 
  165.      */ 
  166.     public function getBrother($id
  167.     { 
  168.         $data = self::$_indexs[$id]->_parent->_child; 
  169.         $this->_data = $data
  170.         return $this
  171.     } 
  172.      
  173.     /** 
  174.      * 将Tree对象转化为数组 
  175.      *  
  176.      * @param  object $object 
  177.      * @return array 
  178.      */ 
  179.      public function toArray($obj = NULL) 
  180.      { 
  181.         $obj  = ($obj === NULL) ? $this->_data : $obj
  182.         $arr  = array(); 
  183.         $_arr = is_object($obj) ? $this->_getBaseInfo($obj) : $obj
  184.          
  185.         if (is_array($_arr)) { 
  186.             foreach ($_arr as $key => $val){ 
  187.                  
  188.                 $val = (is_array($val) || is_object($val)) ? $this->toArray($val) : $val
  189.                 $arr[$key] = $val
  190.             } 
  191.         } else { 
  192.             throw new Exception("_arr不是数组"); 
  193.         } 
  194.       
  195.         return $arr
  196.     } 
  197.      
  198.     /** 
  199.      * 过滤_parent等字段,以免造成无限循环 
  200.      *  
  201.      * @param object $obj 
  202.      * @return void 
  203.      */ 
  204.     private function _getBaseInfo($obj
  205.     { 
  206.         $vars = get_object_vars($obj); 
  207.         $baseInfo['_info']  =  $vars['_info']; 
  208.         $baseInfo['_child'] =  $vars['_child']; 
  209.         return $baseInfo
  210.     } 
  211.      
  212.     /** 
  213.      * 二维数组排序 
  214.      * 
  215.      * 根据指定的键名对二维数组进行升序或者降序排列 
  216.      * 
  217.      * @param array  $arr 二维数组 
  218.      * @param string $keys 
  219.      * @param string $type 必须为 asc或desc 
  220.      * @throws 当参数非法时抛出异常 
  221.      * @return 返回排序好的数组 
  222.      */ 
  223.     private function _array_sort(array $arr$keys$type = 'asc') { 
  224.         if (!is_string($keys)) { 
  225.             throw new Exception("非法参数keys:参数keys的类型必须为字符串"); 
  226.         } 
  227.      
  228.         $keysvalue = $new_array = array(); 
  229.         foreach ($arr as $k=>$v) { 
  230.             if (!is_array($v) || !isset($v[$keys])) { 
  231.                 throw new Exception("参数arr不是二维数组或arr子元素中不存在键'{$keys}'"); 
  232.             } 
  233.             $keysvalue[$k] = $v[$keys]; 
  234.         } 
  235.      
  236.         switch ($type) { 
  237.             case 'asc'
  238.                 asort($keysvalue); 
  239.                 break
  240.             case 'desc'
  241.                 arsort($keysvalue); 
  242.                 break
  243.             default
  244.                 throw new Exception("非法参数type :参数type的值必须为 'asc' 或 'desc'"); 
  245.         } 
  246.      
  247.         reset($keysvalue); 
  248.         foreach ($keysvalue as $k=>$v) { 
  249.             $new_array[$k] = $arr[$k]; 
  250.         } 
  251.         return $new_array
  252.     } 
  253. ?> 
希望本文所述对大家的PHP程序设计有所帮助。

Tags: php树形结构数据

分享到: