145。二叉树后序遍历
难度:简单
主题: 堆栈、树、深度优先搜索、二叉树
给定二叉树的根,返回其节点值的后序遍历。
示例1:
示例2:
示例 3:
约束:
解决方案:
我们可以使用堆栈的迭代方法。后序遍历遵循以下顺序:左、右、根。
让我们用 PHP 实现这个解决方案:145。二叉树后序遍历
<?php // Definition for a binary tree node. class TreeNode { public $val = null; public $left = null; public $right = null; public function __construct($val = 0, $left = null, $right = null) { $this->val = $val; $this->left = $left; $this->right = $right; } } /** * @param TreeNode $root * @return Integer[] */ function postorderTraversal($root) { ... ... ... /** * go to ./solution.php */ } // Example usage: // Example 1 $root1 = new TreeNode(1); $root1->right = new TreeNode(2); $root1->right->left = new TreeNode(3); print_r(postorderTraversal($root1)); // Output: [3, 2, 1] // Example 2 $root2 = null; print_r(postorderTraversal($root2)); // Output: [] // Example 3 $root3 = new TreeNode(1); print_r(postorderTraversal($root3)); // Output: [1] ?>
TreeNode 类: TreeNode 类定义二叉树中的节点,包括其值、左子节点和右子节点。
postorder遍历函数:
这种迭代方法模拟了递归后序遍历,而不使用系统递归,从而更加节省内存。
联系链接
如果您发现本系列有帮助,请考虑在 GitHub 上给 存储库 一个星号或在您最喜欢的社交网络上分享该帖子?。您的支持对我来说意义重大!
如果您想要更多类似的有用内容,请随时关注我:
以上是。二叉树后序遍历的详细内容。更多信息请关注PHP中文网其他相关文章!