《PHP教程:PHP迭代與遞歸實現(xiàn)無限級分類》要點:
本文介紹了PHP教程:PHP迭代與遞歸實現(xiàn)無限級分類,希望對您有用。如果有疑問,可以聯(lián)系我們。
無限級分類是開發(fā)中常見的情況,因此本文對常見的無限極分類算法進行總結歸納.PHP編程
1.循環(huán)迭代實現(xiàn)PHP編程
$arr = [ 1=>['id'=>1,'name'=>'父1','father'=>NULL], 2=>['id'=>2,'name'=>'父2','father'=>NULL], 3=>['id'=>3,'name'=>'父3','father'=>NULL], 4=>['id'=>4,'name'=>'兒1-1','father'=>1], 5=>['id'=>5,'name'=>'兒1-2','father'=>1], 6=>['id'=>6,'name'=>'兒1-3','father'=>1], 7=>['id'=>7,'name'=>'兒2-1','father'=>2], 8=>['id'=>8,'name'=>'兒2-1','father'=>2], 9=>['id'=>9,'name'=>'兒3-1','father'=>3], 10=>['id'=>10,'name'=>'兒3-1-1','father'=>9], 11=>['id'=>11,'name'=>'兒1-1-1','father'=>4], 12=>['id'=>12,'name'=>'兒2-1-1','father'=>7], ]; function generateTree($items){ $tree = array(); foreach($items as $item){ if(isset($items[$item['father']])){ $items[$item['father']]['son'][] = &$items[$item['id']]; }else{ $tree[] = &$items[$item['id']]; } } return $tree; } $tree = generateTree($arr); print_r(json_encode($tree));
輸出:PHP編程
PHP編程
分析:PHP編程
這個算法利用了循環(huán)迭代,將線性結構按照父子關系以樹形結構輸出,算法的關鍵在于使用了引用.PHP編程
優(yōu)點:速度快,效率高.PHP編程
缺點:數(shù)組的key值必須與id值相同,不便于取出數(shù)據(jù)(同樣使用迭代獲取數(shù)據(jù))PHP編程
2.遞歸實現(xiàn)PHP編程
$arr = [ 0=>['id'=>1,'name'=>'父1','father'=>0], 1=>['id'=>2,'name'=>'父2','father'=>0], 2=>['id'=>3,'name'=>'父3','father'=>0], 3=>['id'=>4,'name'=>'兒1-1','father'=>1], 4=>['id'=>5,'name'=>'兒1-2','father'=>1], 5=>['id'=>6,'name'=>'兒1-3','father'=>1], 6=>['id'=>7,'name'=>'兒2-1','father'=>2], 7=>['id'=>8,'name'=>'兒2-1','father'=>2], 8=>['id'=>9,'name'=>'兒3-1','father'=>3], 9=>['id'=>10,'name'=>'兒3-1-1','father'=>9], 10=>['id'=>11,'name'=>'兒1-1-1','father'=>4], 11=>['id'=>12,'name'=>'兒2-1-1','father'=>7], ]; function generateTree($arr,$id,$step){ static $tree=[]; foreach($arr as $key=>$val) { if($val['father'] == $id) { $flg = str_repeat('└D',$step); $val['name'] = $flg.$val['name']; $tree[] = $val; generateTree($arr , $val['id'] ,$step+1); } } return $tree; } $tree = generateTree($arr,0,0); foreach ($tree as $val){ echo $val['name'].'<br>'; }
?輸出:PHP編程
PHP編程
分析:PHP編程
利用了遞歸,數(shù)組的key值與id值可以不相同,最后以順序的結構輸出數(shù)組PHP編程
優(yōu)點:方便遍歷,查找父子元素PHP編程
缺點:php不擅長遞歸,數(shù)據(jù)量大的情況下效率會顯著降低PHP編程
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家.
PHP編程
轉載請注明本頁網址:
http://www.snjht.com/jiaocheng/209.html