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

【leetcode?python】 111. Minimum Depth of Binary Tree

时间:2016-10-24 22:59:37      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:sel   type   root   turn   python   nod   nim   tco   init   

# 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):
    depthList=[]
    def minDepth(self, root):
        """
        :type root: TreeNode
        :rtype: int
        """
        self.depthList=[]
        if root==None:return 0
        self.depthList.append(1)
        self.dfs(root)
       
        return min(self.depthList)
        
        
    def dfs(self,root):
        
        curdepth=self.depthList[-1]
        
        if root.right!=None or root.left!=None:
            self.depthList.pop()
        else:return
        
        if root.left!=None:
            dep=curdepth+1
            self.depthList.append(dep)
            self.dfs(root.left)
        if root.right!=None:
            dep=curdepth+1
            self.depthList.append(dep)
            self.dfs(root.right)
        
        
        

        
        
    
    
       

【leetcode?python】 111. Minimum Depth of Binary Tree

标签:sel   type   root   turn   python   nod   nim   tco   init   

原文地址:http://www.cnblogs.com/kwangeline/p/5994790.html

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