web-dev-qa-db-ja.com

PHP-ツリー構造リストの作成方法は?

したがって、私の問題は、次の2つのテーブルのツリーを構築することです。

Parent table:
+-------+---------------+
| pr_id |  parent_name  |
+-------+---------------+
|   1   |       p       |
|   2   |      p_0      | 
|   3   |     p_0_1     | 
|   4   |       q       | 
+-------+---------------+

Child table:
+-------+---------------+---------------------------+
| ch_id |     pr_id     |        child_name         |
+-------+---------------+---------------------------+
|   1   |       1       |            p_0            |
|   2   |       1       |            p_1            |
|   3   |       2       |           p_0_0           |
|   4   |       2       |           p_0_1           |
|   5   |       3       |          p_0_1_0          |
|   6   |       3       |          p_0_1_1          |
|   7   |       4       |            q_0            |
|   8   |       4       |            q_1            |
+-------+---------------+---------------------------+

そして、ツリーは次のようになります。

  • p
    • p_0
      • p_0_0
      • p_0_1
        • p_0_1_0
        • p_0_1_1
  • q

誰かが再帰的な解決策を手伝ってくれる??

12
Vaiman Hunor

これのためにデータベースに2つのテーブルを作成する必要はありません。1つのテーブルのみから以下のように維持できます。

+-------+---------------+---------------------------+
|   id  |   parent_id   |           title           |
+-------+---------------+---------------------------+
|   1   |       0       |   Parent Page             |
|   2   |       1       |   Sub Page                |
|   3   |       2       |   Sub Sub Page            |
|   4   |       0       |   Another Parent Page     |
+-------+---------------+---------------------------+

生成された配列は次のようになります

Array
(
    [0] => Array
        (
            [id] => 1
            [parent_id] => 0
            [title] => Parent Page
            [children] => Array
                        (
                            [0] => Array
                                (
                                    [id] => 2
                                    [parent_id] => 1
                                    [title] => Sub Page
                                    [children] => Array
                                                (
                                                    [0] => Array
                                                        (
                                                            [id] => 3
                                                            [parent_id] => 1
                                                            [title] => Sub Sub Page
                                                        )
                                                )
                                )
                        )
        )
    [1] => Array
        (
            [id] => 4
            [parent_id] => 0
            [title] => Another Parent Page
        )
)

あなたはそれを達成するために以下の再帰関数を使用する必要があります

function buildTree(array $elements, $parentId = 0) {
    $branch = array();

    foreach ($elements as $element) {
        if ($element['parent_id'] == $parentId) {
            $children = buildTree($elements, $element['id']);
            if ($children) {
                $element['children'] = $children;
            }
            $branch[] = $element;
        }
    }

    return $branch;
}

$tree = buildTree($rows);

アルゴリズムはかなり単純です:

  1. すべての要素の配列と現在の親のID(最初は0/nothing/null/whatever)を取得します。
  2. すべての要素をループします。
  3. 要素のparent_idが1.で取得した現在の親IDと一致する場合、要素は親の子です。現在の子のリストに入れます(ここでは$ branch)。
  4. 3.で識別した要素のIDを使用して関数を再帰的に呼び出します。つまり、その要素のすべての子を見つけ、それらを子要素として追加します。
  5. 見つかった子供のリストを返します。
35
Veerendra