原题:https://leetcode.com/problems/find-bottom-left-tree-value/description/
题目描述:
Given a binary tree, find the leftmost value in the last row of the tree.
Example 1:
Input:
2
/ \
1 3
Output:
1
Example 2:
Input:
1
/ \
2 3
/ / \
4 5 6
/
7
Output:
7
Note: You may assume the tree (i.e., the given root node) is not NULL.
题解:从右向左的BFS。
代码:
/**
* 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:
int findBottomLeftValue(TreeNode* root) {
queue<TreeNode*> l;
TreeNode* tmp;
l.push(root);
while (!l.empty()&&l.front()) {
if (l.front()->right) l.push(l.front()->right);
if (l.front()->left) l.push(l.front()->left);
tmp = l.front();
l.pop();
}
return tmp->val;
}
};
74 / 74 test cases passed.
Status: Accepted
Runtime: 13 ms