国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

【LeetCode】513. Find Bottom Left Tree Value【M】【73】

2019-11-08 02:54:19
字體:
來源:轉載
供稿:網友

Given a binary tree, find the leftmost value in the last row of the tree.

Example 1:

Input:    2   / /  1   3Output:1

Example 2: 

Input:        1       / /      2   3     /   / /    4   5   6       /      7Output:7

Note: You may assume the tree (i.e., the given root node) is not NULL.

Subscribe to see which companies asked this question.這應該就是一個很直白的廣搜,每一層每一層的處理,最后返回最后一層的最左邊的元素

# Definition for a binary tree node.# class TreeNode(object):#     def __init__(self, x):#         self.val = x#         self.left = None#         self.right = Noneclass Solution(object):    def findBottomLeftValue(self, root):        s = [root]        t = []        res = root.val        while 1:            t = []            for root in s:                if root.left:                    t += root.left,                if root.right:                    t += root.right,            if t == []:                break            else:                s = t[:]                res = t[0].val        return res        """        :type root: TreeNode        :rtype: int        """

這種方法看起來也很厲害的樣子

def findLeftMostNode(self, root):     queue = [root]     for node in queue:          queue += filter(None(node.right,node.left))     returnnode.val


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 青州市| 法库县| 台山市| 涡阳县| 神木县| 门头沟区| 万山特区| 贡山| 任丘市| 东阳市| 普安县| 黄石市| 满城县| 清苑县| 沽源县| 曲阳县| 尤溪县| 化德县| 鄯善县| 海城市| 吴旗县| 青河县| 四平市| 丹棱县| 遂平县| 三河市| 九寨沟县| 庆安县| 望谟县| 千阳县| 乌兰察布市| 新建县| 南皮县| 金平| 德保县| 深州市| 阳原县| 思茅市| 罗江县| 旌德县| 逊克县|