有關jquery與DOM節點操作方法和屬性記錄
661
2024-03-07
無限級分類是開發中常見的情況,因此本文對常見的無限極分類算法進行總結歸納.
1.循環迭代實現
$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));
輸出:
分析:
這個算法利用了循環迭代,將線性結構按照父子關系以樹形結構輸出,算法的關鍵在于使用了引用.
優點:速度快,效率高.
缺點:數組的key值必須與id值相同,不便于取出數據(同樣使用迭代獲取數據)
2.遞歸實現
$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>'; }
輸出:
分析:
利用了遞歸,數組的key值與id值可以不相同,最后以順序的結構輸出數組
優點:方便遍歷,查找父子元素
缺點:php不擅長遞歸,數據量大的情況下效率會顯著降低
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持綠夏網。
#免責聲明#
本站[綠夏技術導航]提供的一切軟件、教程和內容信息僅限用于學習和研究目的;不得將上述內容用于商業或者非法用途,否則,一切后果請用戶自負。本站信息來自網絡收集整理,版權爭議與本站無關。您必須在下載后的24個小時之內,從您的電腦或手機中徹底刪除上述內容。如果您喜歡該程序或內容,請支持正版,購買注冊,得到更好的正版服務。我們非常重視版權問題,如有侵權請郵件[admin@lxwl520.com]與我們聯系進行刪除處理。敬請諒解!