PHP:节点深度

发布于 2024-11-14 08:34:13 字数 1107 浏览 1 评论 0原文

我想找到该数组的最大深度:

Array
(
    [0] => Array
        (
            [children] => Array
                (
                    [0] => Array
                        (
                            [children] => Array
                                (
                                    [0] => Array
                                        (
                                            [children] => 
                                        )
                                )
                        )
                )
            [children] => Array
                (
                    [0] => Array
                        (
                            [children] =>
                        )
                )
        )
)

在本例中为 3,因为其中一个节点包含两个子节点。

这是我到目前为止一直在尝试的代码:

public static function nodeDepth($nodes) {
    $node_depth = array();
    foreach($nodes as $node) {
      foreach($node['children'] as $childnode) {
        $node_depth[] = nodeDepth($childnode)+1;
      }
    }
    return max($node_depth);
  }

I would like to find the maximum depth of this array:

Array
(
    [0] => Array
        (
            [children] => Array
                (
                    [0] => Array
                        (
                            [children] => Array
                                (
                                    [0] => Array
                                        (
                                            [children] => 
                                        )
                                )
                        )
                )
            [children] => Array
                (
                    [0] => Array
                        (
                            [children] =>
                        )
                )
        )
)

In this case it's 3 because one of the nodes contains two children nodes.

This is the code I have been trying so far:

public static function nodeDepth($nodes) {
    $node_depth = array();
    foreach($nodes as $node) {
      foreach($node['children'] as $childnode) {
        $node_depth[] = nodeDepth($childnode)+1;
      }
    }
    return max($node_depth);
  }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小苏打饼 2024-11-21 08:34:13

试试这个:

<?php

    function array_depth($array) {
        $max_depth = 1;

        foreach ($array as $value) {
            if (is_array($value)) {
                $depth = array_depth($value) + 1;

                if ($depth > $max_depth) {
                    $max_depth = $depth;
                }
            }
        }        
        return $max_depth;
    }

?>

在您使用子节点的情况下,您需要将结果除以 2。Greetz

XpertEase

Try this:

<?php

    function array_depth($array) {
        $max_depth = 1;

        foreach ($array as $value) {
            if (is_array($value)) {
                $depth = array_depth($value) + 1;

                if ($depth > $max_depth) {
                    $max_depth = $depth;
                }
            }
        }        
        return $max_depth;
    }

?>

In you case with the child nodes, you will need to divide result by 2.

Greetz,

XpertEase

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文