首頁 >後端開發 >php教程 >如何從平面數組列表有效率地建立嵌套數組樹?

如何從平面數組列表有效率地建立嵌套數組樹?

Susan Sarandon
Susan Sarandon原創
2024-12-25 18:50:10687瀏覽

How to Efficiently Create a Nested Array Tree from a Flat Array List?

從數組列表中建立嵌套數組樹

您有一個具有父子關係的元素數組,並希望將其轉換為嵌套數組樹。這是一個有效的解決方案:

# Create a new array indexed by parent ID
$new = [];
foreach ($arr as $a) {
    $new[$a['parentid']][] = $a;
}

# Start with the root node
$tree = createTree($new, [$arr[0]]);

# Recursive function to build the tree
function createTree(&$list, $parent) {
    $tree = [];
    foreach ($parent as $l) {
        # If there are children, create children tree
        if (isset($list[$l['id']])) {
            $l['children'] = createTree($list, $list[$l['id']]);
        }

        # Add parent to the tree
        $tree[] = $l;
    }
    return $tree;
}

該演算法根據原始數組中的父子關係高效地構造嵌套數組樹。

以上是如何從平面數組列表有效率地建立嵌套數組樹?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn