Leetcode PHP题解--D44 590. N-ary Tree Postorder Traversal
D44 590. N-ary Tree Postorder Traversal
题目链接
590. N-ary Tree Postorder Traversal
题目分析
后序遍历,这题也是比较基础的题目了。
思路
先遍历子节点,再遍历根节点。
最终代码
<?php /* // Definition for a Node. class Node { public $val; public $children; @param Integer $val @param list<Node> $children function __construct($val, $children) { $this->val = $val; $this->children = $children; } } */ class Solution { public $val = []; /** * @param Node $root * @return Integer[] */ function postorder($root) { if(!$root){ return $this->val; } foreach($root->children as $child){ $this->postorder($child); } $this->val[] = $root->val; return $this->val; } }
若觉得本文章对你有用,欢迎用爱发电资助。
相关推荐
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23
savorTheFlavor 2020-10-23