递归树遍历 - 如何跟踪递归级别?
我基本上试图从表示树结构的多维数组构建 html ul/li 嵌套列表。
以下代码工作正常,但我想改进它:
我需要一种方法来跟踪递归级别,以便我可以将不同的类应用于不同的级别,向生成的输出添加缩进等。
function buildTree($tree_array, $display_field, $children_field, $class='', $id='') {
echo "<ul>\n";
foreach ($tree_array as $row) {
echo "<li>\n";
echo $row[$display_field] . "\n";
if (isset($row[$children_field])) {
$this->buildTree($row[$children_field]);
}
echo "</li>\n";
}
echo "</ul>\n";
}
tree_array 如下所示:
Array
(
[0] => Array
(
[category_id] => 1
[category_name] => calculatoare
[parent_id] => 0
[children] => Array
(
[0] => Array
(
[category_id] => 4
[category_name] => placi de baza
[parent_id] => 1
)
[1] => Array
(
[category_id] => 5
[category_name] => carcase
[parent_id] => 1
[children] => Array
(
[0] => Array
(
[category_id] => 6
[category_name] => midi-tower
[parent_id] => 5
)
)
)
)
)
[1] => Array
(
[category_id] => 2
[category_name] => electronice
[parent_id] => 0
)
[2] => Array
(
[category_id] => 3
[category_name] => carti
[parent_id] => 0
)
)
$ 已将其标记为家庭作业,因为我想以此为契机来提高我对递归的(较差)理解,因此,我希望得到能够指导我找到解决方案的答案,而不是提供完整的工作示例:)
I'm basically trying to build an html ul/li nested list from a multidimensional array representing a tree structure.
The following code works fine but I want to improve it:
I need a way to keep track of the recursion level so I can apply different classes to different levels, add indenting to the generated output, etc.
function buildTree($tree_array, $display_field, $children_field, $class='', $id='') {
echo "<ul>\n";
foreach ($tree_array as $row) {
echo "<li>\n";
echo $row[$display_field] . "\n";
if (isset($row[$children_field])) {
$this->buildTree($row[$children_field]);
}
echo "</li>\n";
}
echo "</ul>\n";
}
The $tree_array looks like this:
Array
(
[0] => Array
(
[category_id] => 1
[category_name] => calculatoare
[parent_id] => 0
[children] => Array
(
[0] => Array
(
[category_id] => 4
[category_name] => placi de baza
[parent_id] => 1
)
[1] => Array
(
[category_id] => 5
[category_name] => carcase
[parent_id] => 1
[children] => Array
(
[0] => Array
(
[category_id] => 6
[category_name] => midi-tower
[parent_id] => 5
)
)
)
)
)
[1] => Array
(
[category_id] => 2
[category_name] => electronice
[parent_id] => 0
)
[2] => Array
(
[category_id] => 3
[category_name] => carti
[parent_id] => 0
)
)
I've tagged this as homework because I'd like to use this as an opportunity to improve on my (poor) understanding of recursion so, I'd appreciate answers that would guide me to the solution rather than provide a complete working example :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
快速而肮脏的方法(请参阅下面的“剧透”块以了解实现):
在函数声明中添加一个附加变量
$recursionDepth
,默认情况下将其设置为0
。在每个后续递归中,使用
$recursionDepth + 1
调用您的函数。由于函数变量仅对于函数的相应实例“可见”(作用域),因此您最终将得到当前迭代深度的指示器。
另外,在我看来,函数的第 12 行
不起作用——原因是您没有将变量传递给
buildTree
的下一个实例。它可能应该如下所示:
这是我对您的代码进行的更改以实现您想要的效果:
Quick'n'dirty approach (see "spoiler" block below for the implementation):
Add an additional variable
$recursionDepth
to your function declaration, make it0
by default.On each subsequent recursion, call your function with
$recursionDepth + 1
.Since the function variables are only "visible" (scoped) for the respective instance of the function, you'll end up with an indicator of the current iteration depth.
Also, line 12 of your function
doesn't look to me as if it would work – the reason being that you're not passing your variables on to the next instance of
buildTree
.It probably should look like this:
Here's the changes I'd make to your code to achieve what you want:
你正在让你的生活变得比需要的更加困难。 SPL 提供了许多迭代器 为了您的方便。使用
RecursiveArrayIterator
类可以轻松遍历多维数组。它不仅允许您处理任何级别深度数组,而且还可以跟踪深度。示例
键盘上的示例
如您所见,有一个方法
getDepth()
它将始终告诉您当前的迭代深度。这是RecursiveIteratorIterator
所需的方法在递归迭代器中迭代子级。如果您需要影响迭代开始或访问子级时发生的情况,请查看我对 多维数组迭代,它显示了一个自定义的
RecursiveIteratorIterator
,它将把多维数组的值包装到xml元素中,并按深度缩进它们当前迭代(适应 ul/li 元素应该很简单)。另请参阅有关迭代器的维基百科文章以获取一般介绍。
You are making your life more difficult than it needs to be. The SPL offers a number of iterators for your convenience. Traversing multidimensional arrays is easy with the
RecursiveArrayIterator
class. Not only does it allow you to process any level depth arrays but it also will keep track of the depth.Example
Example on codepad
As you can see, there is a method
getDepth()
which will always tell you the current iteration depth. It's a method of theRecursiveIteratorIterator
required to iterate over the children in recursive iterators.If you need to influence what happens when iteration starts or when children are accessed, have a look at my answer to Multidimensional array iteration which shows a custom
RecursiveIteratorIterator
that will wrap the values of a multidimensional array into xml elements and indent them by the depth of the current iteration (which should be trivial to adapt to ul/li elements).Also have a look at the Wikipedia Article about Iterators for a general introduction.
公共虚拟int GetParentById(int t)
{
var ret = this._list.FirstOrDefault((f) => f.Id == t);
if (ret != null)
返回 ret.ParentId;
返回-1;
}
public virtual int GetParentById(int t)
{
var ret = this._list.FirstOrDefault((f) => f.Id == t);
if (ret != null)
return ret.ParentId;
return -1;
}