首页 > 编程语言 > 详细

树状的分类算法(递归)

时间:2015-12-16 17:22:40      阅读:148      评论:0      收藏:0      [点我收藏+]

电脑办公 (电脑整机(笔记本平板电脑超极本), 外设产品)

数据格式:

Array(‘cat_id’=>’45’, ‘cat_name’=>’电脑办公’, ‘parent_id’=>’0’, ‘children’=>

Array(

Array(‘cat_id’=>’8’, ‘cat_name’=>’电脑整机’, ‘parent_id’=>’45’, ‘children’=>

Array(

Array(‘cat_id’=>’18’, ‘cat_name’=>’平板电脑’, ‘parent_id’=>’8’, ‘children’=>array())

 

Array(‘cat_id’=>’65’, ‘cat_name’=>’笔记本’, ‘parent_id’=>’8’, ‘children’=>array())

 

Array(‘cat_id’=>’71’, ‘cat_name’=>’超极本’, ‘parent_id’=>’8’, ‘children’=>array())

 

)

Array(‘cat_id’=>’11’, ‘cat_name’=>’外设产品’, ‘parent_id’=>’45’, ‘children’=>array())

)

 

 

<?php
public function getNextedList($p_id=0){
//获得所有的列表
$list=$this->getList();
//制作嵌套的数据,递归查找
return $this->getNexted($list,$p_id);
}
public function getNexted($list,$p_id){
$children=array();
foreach($list as $row){
if($row[‘parent_id‘]==$p_id){
$row[‘children‘]=$this->getNexted($list,$row[‘cat_id‘]);
$children[]=$row;
}
}
return $children;
}
?>

树状的分类算法(递归)

原文:http://www.cnblogs.com/hupengyin/p/5051458.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!