zoukankan      html  css  js  c++  java
  • 257. 二叉树的所有路径

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

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

    示例:

    输入:

    1
    /
    2 3

    5

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

    解释: 所有根节点到叶子节点的路径为: 1->2->5, 1->3

    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/binary-tree-paths

    # Definition for a binary tree node.
    # class TreeNode:
    #     def __init__(self, x):
    #         self.val = x
    #         self.left = None
    #         self.right = None
    
    class Solution:
        def binaryTreePaths(self, root: TreeNode) -> List[str]:
            if not root:
                return []
            children=[root.left,root.right]
            if not any(children):
                return ['1']
            
            def dfs(root,path):
                if root:
                    path+=str(root.val)
                    if not root.left and not root.right:
                        res.append(path)
                    else:
                        path+='->'
                        dfs(root.left,path)
                        dfs(root.right,path)
    
            res=[]
            dfs(root,'')  
                
            return res

    ``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````

    # Definition for a binary tree node.
    # class TreeNode:
    #     def __init__(self, x):
    #         self.val = x
    #         self.left = None
    #         self.right = None
    
    class Solution:
        def binaryTreePaths(self, root: TreeNode) -> List[str]:   
            def dfs(root,path):
                if root:
                    path+=str(root.val)
                    if not root.left and not root.right:
                        res.append(path)
                    else:
                        path+='->'
                        dfs(root.left,path)
                        dfs(root.right,path)
    
            res=[]
            dfs(root,'')  
                
            return res
     
  • 相关阅读:
    python--------------内置函数
    下载文件的一致性验证之MD5值校验
    MySQL最大连接数设置
    Jenkins构建次数设置
    Linux(CentOS7)安装zip、unzip命令
    如何在CentOS 7上安装Munin
    Intellij IDEA14 搜索框及控制台乱码解决
    IDEA测试结果查看
    IDEA运行TestNG报错rg.testng.TestNGException: org.xml.sax.SAXParseException;
    intellij idea 注释行如何自动缩进
  • 原文地址:https://www.cnblogs.com/xxxsans/p/13611790.html
Copyright © 2011-2022 走看看