PHP迭代與遞迴實現無限級分類

2022-10-10 12:36:12 字數 2174 閱讀 1627

無限級分類是開發中常見的情況,因此本文對常見的無限極分類演算法進行總結歸納.

1 $arr = [

2 1=>['id'=>1,'name'=>'父1','father'=>null],

3 2=>['id'=>2,'name'=>'父2','father'=>null],

4 3=>['id'=>3,'name'=>'父3','father'=>null],

5 4=>['id'=>4,'name'=>'兒1-1','father'=>1],

6 5=>['id'=>5,'name'=>'兒1-2','father'=>1],

7 6=>['id'=>6,'name'=>'兒1-3','father'=>1],

8 7=>['id'=>7,'name'=>'兒2-1','father'=>2],

9 8=>['id'=>8,'name'=>'兒2-1','father'=>2],

10 9=>['id'=>9,'name'=>'兒3-1','father'=>3],

11 10=>['id'=>10,'name'=>'兒3-1-1','father'=>9],

12 11=>['id'=>11,'name'=>'兒1-1-1','father'=>4],

13 12=>['id'=>12,'name'=>'兒2-1-1','father'=>7],

14 ];

15 function generatetree($items)else

23 }

24 return $tree;

25 }

26 $tree = generatetree($arr);

27 print_r(json_encode($tree));

輸出:

分析:

這個演算法利用了迴圈迭代,將線性結構按照父子關係以樹形結構輸出,演算法的關鍵在於使用了引用.

優點:速度快,效率高.

缺點:陣列的key值必須與id值相同,不便於取出資料(使用遞迴獲取資料)

$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)

}return $tree;

}$tree = generatetree($arr,0,0);

foreach ($tree as $val)

輸出:

分析:

利用了遞迴,陣列的key值與id值可以不相同,最後以順序的結構輸出陣列

優點:方便遍歷,查詢父子元素

缺點:php不擅長遞迴,資料量大的情況下效率會顯著降低

PHP迭代與遞迴實現無限級分類

無限級分類是開發中常見的情況,因此本文對常見的無限極分類演算法進行總結歸納.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 f...

PHP遞迴實現無限級分類

在一些複雜的系統中,要求對資訊欄目進行無限級的分類,以增強系統的靈活性。那麼php是如何實現無限級分類的呢?我們在本文中使用遞迴演算法並結合mysql資料表實現無限級分類。在一些複雜的系統中,要求對資訊欄目進行無限級的分類,以增強系統的靈活性。那麼php是如何實現無限級分類的呢?我們在本文中使用遞迴...

PHP實現遞迴無限級分類

在一些複雜的系統中,要求對資訊欄目進行無限級的分類,以增強系統的靈活性。那麼php是如何實現無限級分類的呢?我們在本文中使用遞迴演算法並結合mysql資料表實現無限級分類。遞迴,簡單的說就是一段程式 的重複呼叫,當把 寫到乙個自定義函式中,將引數等變數儲存,函式中重複呼叫函式,直到達到某個條件才跳出...