Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.47 KB

0199-binary-tree-right-side-view.adoc

File metadata and controls

49 lines (34 loc) · 1.47 KB

199. Binary Tree Right Side View

{leetcode}/problems/binary-tree-right-side-view/[LeetCode - 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.

Example:

Input: [1,2,3,null,5,null,4]
Output: [1, 3, 4]
*Explanation:
*
   1            <---
 /   \
2     3         <---
 \     \
  5     4       <---

思路分析

最简单的思路就是利用 BFS 思想进行分层遍历,然后每层取最后一个节点的值。

link:{sourcedir}/_0199_BinaryTreeRightSideView.java[role=include]

这道题是 102. Binary Tree Level Order Traversal 的延伸。

思考题

这道题也可以使用深度优先遍历,思考如何实现?

link:{sourcedir}/_0199_BinaryTreeRightSideView_1.java[role=include]

参考资料

  1. 199. 二叉树的右视图 - 官方题解 — 感觉官方的深度优先搜索的解法不对,或者实际是广度优先。

  2. 199. 二叉树的右视图 - 【视频】如何灵活运用递归?