LeetCode 199. 二叉树的右视图(Binary Tree Right Side View)

Posted hglibin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 199. 二叉树的右视图(Binary Tree Right Side View)相关的知识,希望对你有一定的参考价值。

199. 二叉树的右视图
199. 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.

LeetCode199. Binary Tree Right Side View

示例:

输入: [1,2,3,null,5,null,4]
输出: [1, 3, 4]
解释:

   1            <---
 /   2     3         <---
 \       5     4       <---

The core idea of this algorithm:

  1. Each depth of the tree only select one node.
  2. View depth is current size of result list.

Java 实现

class TreeNode {
    int val;
    TreeNode left;
    TreeNode right;

    TreeNode(int x) {
        val = x;
    }
}
import java.util.ArrayList;
import java.util.List;

class Solution {
    public List<Integer> rightSideView(TreeNode root) {
        List<Integer> result = new ArrayList<>();
        rightView(root, result, 0);
        return result;
    }

    public void rightView(TreeNode curr, List<Integer> result, int currDepth) {
        if (curr == null) {
            return;
        }
        if (currDepth == result.size()) {
            result.add(curr.val);
        }
        rightView(curr.right, result, currDepth + 1);
        rightView(curr.left, result, currDepth + 1);
    }
}

相似题目

参考资料

以上是关于LeetCode 199. 二叉树的右视图(Binary Tree Right Side View)的主要内容,如果未能解决你的问题,请参考以下文章

leetcode199二叉树的右视图

leetcode.199二叉树的右视图

LeetCode 199. 二叉树的右视图(Binary Tree Right Side View)

LeetCode Java刷题笔记—199. 二叉树的右视图

Leetcode-199. 二叉树的右视图

Leetcode No.199 二叉树的右视图