Leetcode 199. Binary Tree Right Side View

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Binary Tree Right Side View

2. Solution

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector<int> rightSideView(TreeNode* root) {
vector<int> result;
traverseRight(root, result, 0);
return result;
}

private:
void traverseRight(TreeNode* root, vector<int>& result, int depth) {
if(!root) {
return;
}
depth++;
if(depth > result.size()) {
result.push_back(root->val);
}
traverseRight(root->right, result, depth);
traverseRight(root->left, result, depth);
}
};

Reference

  1. https://leetcode.com/problems/binary-tree-right-side-view/description/
如果有收获,可以请我喝杯咖啡!