leetcode257python二叉树的所有路径

论坛 期权论坛 编程之家     
选择匿名的用户   2021-5-22 19:39   25   0

给定一个二叉树,返回所有从根节点到叶子节点的路径。

说明: 叶子节点是指没有子节点的节点。

示例:

输入:

   1
 /   \
2     3
 \
  5

输出: ["1->2->5", "1->3"]

解释: 所有根节点到叶子节点的路径为: 1->2->5, 1->3
python3
# Definition for a binary tree node.
# class TreeNode(object):
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None

class Solution(object):
    def binaryTreePaths(self, root):
        """
        :type root: TreeNode
        :rtype: List[str]
        """
        if not root:#为空,直接返回[]
            return []
        res=[]
        #temp=''
        
        def recursive(root,temp=''):
            #global temp
            temp+=str(root.val)
            if not root.left and not root.right:#左右子树皆为空时
                res.append(temp)
            temp+='->'
            if root.left:
                recursive(root.left,temp)
            if root.right:
                recursive(root.right,temp)
                
        recursive(root)#调用递归
        return res
        


分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP