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

Leetcode 107 Binary Tree Level Order Traversal II

时间:2016-06-01 18:12:00      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

Given a binary tree, return the bottom-up level order traversal of its nodes‘ values. (ie, from left to right, level by level from leaf to root).

For example:
Given binary tree {3,9,20,#,#,15,7},

    3
   /   9  20
    /     15   7

 

return its bottom-up level order traversal as:

[
  [15,7],
  [9,20],
  [3]
]
class Solution(object):
    def levelOrderBottom(self, root):
        if not root:
            return []
        stack, ans = [root], []
        while stack:
            temp, stack_new = [], []
            for x in stack:
                temp.append(x.val)
                if x.left:
                    stack_new.append(x.left)
                if x.right:
                    stack_new.append(x.right)
            ans = [temp] + ans
            stack = stack_new
        return ans
 

Leetcode 107 Binary Tree Level Order Traversal II

标签:

原文地址:http://www.cnblogs.com/lilixu/p/5550395.html

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