PHP迭代與遞歸實現(xiàn)無限級分類
無限級分類是開發(fā)中常見的情況,因此本文對常見的無限極分類算法進行總結(jié)歸納.
1.循環(huán)迭代實現(xiàn)
$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));
輸出:
分析:
這個算法利用了循環(huán)迭代,將線性結(jié)構(gòu)按照父子關(guān)系以樹形結(jié)構(gòu)輸出,算法的關(guān)鍵在于使用了引用.
優(yōu)點:速度快,效率高.
缺點:數(shù)組的key值必須與id值相同,不便于取出數(shù)據(jù)(同樣使用迭代獲取數(shù)據(jù))
2.遞歸實現(xiàn)
$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('└―',$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>'; }
輸出:
分析:
利用了遞歸,數(shù)組的key值與id值可以不相同,最后以順序的結(jié)構(gòu)輸出數(shù)組
優(yōu)點:方便遍歷,查找父子元素
缺點:php不擅長遞歸,數(shù)據(jù)量大的情況下效率會顯著降低
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
PHP的郵件群發(fā)系統(tǒng)phplist配置方法詳細總結(jié)
這篇文章主要介紹了PHP郵件群發(fā)系統(tǒng)phplist配置方法,結(jié)合實例形式詳細總結(jié)分析了PHP郵件群發(fā)系統(tǒng)phplist的配置與使用技巧,需要的朋友可以參考下2016-03-03解析PHP中VC6 X86和VC9 X86的區(qū)別及 Non Thread Safe的意思
本篇文章是對PHP中VC6 X86和VC9 X86的區(qū)別及 Non Thread Safe的意思進行了詳細的分析介紹,需要的朋友參考下2013-06-06php面向?qū)ο蟪绦蛟O(shè)計中self與static的區(qū)別分析
這篇文章主要介紹了php面向?qū)ο蟪绦蛟O(shè)計中self與static的區(qū)別,結(jié)合實例形式分析了php面向?qū)ο蟪绦蛟O(shè)計中self與static的功能、以及在繼承過程中實現(xiàn)多態(tài)的區(qū)別,并總結(jié)了static靜態(tài)延遲綁定的原理,需要的朋友可以參考下2019-05-05