美文网首页
[Leetcode] 199. Binary Tree Righ

[Leetcode] 199. Binary Tree Righ

作者: gammaliu | 来源:发表于2016-04-12 23:31 被阅读0次
  1. Binary Tree Right Side View

Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.
For example:Given the following binary tree,
1 <--- / \2 3 <--- \ \ 5 4 <---

You should return [1, 3, 4]
.

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public List<Integer> rightSideView(TreeNode root) {
        List<Integer> result = new ArrayList<>();
        if(root == null) return result;
        List<TreeNode> curLevel = new ArrayList<>();
        curLevel.add(root);
        while(curLevel.size() > 0){
            result.add(curLevel.get(curLevel.size()-1).val);
            List<TreeNode> nxtLevel = new ArrayList<>();
            for(TreeNode cur : curLevel){
                if(cur.left != null) nxtLevel.add(cur.left);
                if(cur.right != null) nxtLevel.add(cur.right);
            }
            curLevel = nxtLevel;
        }
        return result;
    }
}

相关文章

网友评论

      本文标题:[Leetcode] 199. Binary Tree Righ

      本文链接:https://www.haomeiwen.com/subject/ngywlttx.html