码迷,mamicode.com
首页 > 其他好文 > 详细

面试题34:二叉树的和为某一值的路径

时间:2019-08-15 13:05:30      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:二维   技术   init   import   com   __init__   node   路径   表示   

技术图片

# -*- coding:utf-8 -*-
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None
import copy
class Solution:
    # 返回二维列表,内部每个列表表示找到的路径
    def FindPath(self, root, expectNumber):
        # write code here
        # 首先判断边界
        if root == None:
            return []
        
        # 采用广度优先遍历我们的树,广度优先中有构造一个辅助列表
        support = [root]
        supportArray = [[root.val]]
        retArray = []
        
        while support:
            temp = support[0]
            tempsupportArray = supportArray[0]
            # 需要判断当前节点是否为叶子节点
            if temp.left==None and temp.right==None:
                tempSum = sum(tempsupportArray)
                if tempSum==expectNumber:
                    retArray.insert(0,tempsupportArray)
            if temp.left:
                support.append(temp.left)
                #这里为啥用copy????
                newtempsupportArray = copy.copy(tempsupportArray)
                newtempsupportArray.append(temp.left.val)
                supportArray.append(newtempsupportArray)
            if temp.right:
                support.append(temp.right)
                newtempsupportArray = copy.copy(tempsupportArray)
                newtempsupportArray.append(temp.right.val)
                supportArray.append(newtempsupportArray)
                
            del supportArray[0]
            del support[0]
        return retArray 

  

面试题34:二叉树的和为某一值的路径

标签:二维   技术   init   import   com   __init__   node   路径   表示   

原文地址:https://www.cnblogs.com/ivyharding/p/11357176.html

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