-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path257_BinaryTreePaths.py
54 lines (40 loc) · 1.22 KB
/
257_BinaryTreePaths.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# coding: utf8
"""
题目链接: https://leetcode.com/problems/binary-tree-paths/description.
题目描述:
Given a binary tree, return all root-to-leaf paths.
For example, given the following binary tree:
1
/ \
2 3
\
5
All root-to-leaf paths are:
["1->2->5", "1->3"]
Credits:
Special thanks to @jianchao.li.fighter for adding this problem and creating all test cases.
"""
# 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 []
ans = []
self.recursive_tree_path(root, '', ans)
return ans
def recursive_tree_path(self, root, path, ans):
if not root.left and not root.right:
ans.append(path + root.val)
if root.left:
self.recursive_tree_path(root.left, path + str(root.val) + '->', ans)
if root.right:
self.recursive_tree_path(root.right, path + str(root.val) + '->', ans)