码迷,mamicode.com
首页 > 编程语言 > 详细

Leetcode练习(Python):栈类:第145题:二叉树的后序遍历:给定一个二叉树,返回它的 后序 遍历。

时间:2020-05-15 20:29:29      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:递归   程序   pre   tree node   它的   binary   order   ret   solution   

题目:

二叉树的后序遍历:给定一个二叉树,返回它的 后序 遍历。

思路:

递归大法好,之后补充使用栈来实现的。

程序1:递归实现

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None

class Solution:
    def postorderTraversal(self, root: TreeNode) -> List[int]:
        result = []
        def postorder(root):
            if root == None:
                return result
            postorder(root.left)
            postorder(root.right)
            result.append(root.val)
        postorder(root)
        return result

  

Leetcode练习(Python):栈类:第145题:二叉树的后序遍历:给定一个二叉树,返回它的 后序 遍历。

标签:递归   程序   pre   tree node   它的   binary   order   ret   solution   

原文地址:https://www.cnblogs.com/zhuozige/p/12896638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!