博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] Find Bottom Left Tree Value
阅读量:5235 次
发布时间:2019-06-14

本文共 2024 字,大约阅读时间需要 6 分钟。

Given a binary tree, find the leftmost value in the last row of the tree.

Example 1:

Input:    2   / \  1   3Output:1 

Example 2: 

Input:        1       / \      2   3     /   / \    4   5   6       /      7Output:7

Note: You may assume the tree (i.e., the given root node) is not NULL.

找出树左下角的值。

利用层次遍历和hashmap的key唯一性。

层次遍历二叉树,用hashmap来存储每一层的第一个节点,key为层数,value为节点值。

最后返回hashmap值为层数的那个value即可

/** * Definition for a binary tree node. * struct TreeNode { *     int val; *     TreeNode *left; *     TreeNode *right; *     TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */static int layer = 0;class Solution {public:    int findBottomLeftValue(TreeNode* root) {        queue
q; q.push(root); unordered_map
m; while (!q.empty()) { int n = q.size(); layer++; for (int i = 0; i < n; i++) { TreeNode* curNode = q.front(); q.pop(); m.insert({layer, curNode}); if (curNode->left != nullptr) q.push(curNode->left); if (curNode->right != nullptr) q.push(curNode->right); } } return m[layer]->val; }};// 13 ms

 Using dfs to solve this problem.

/** * 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) {        int val = 0;        int depth = 1;        int height = 0;        dfs(root, depth, height, val);        return val;    }        void dfs(TreeNode* node, int depth, int& height, int& val) {        if (node == nullptr)            return;        if (depth > height) {            val = node->val;            height = depth;        }        dfs(node->left, depth + 1, height, val);        dfs(node->right, depth + 1, height, val);    }};// 13 ms

 

转载于:https://www.cnblogs.com/immjc/p/8316884.html

你可能感兴趣的文章
MySql优化相关概念的理解笔记
查看>>
sql索引影响数据存储位置的示例
查看>>
数据库解决方案
查看>>
备份U盘分区表,未雨绸缪
查看>>
Eclipse配置 自动补全功能 快捷键 alt+/
查看>>
抖动效果
查看>>
DataContract和DataMember的作用
查看>>
来自XP的道别信
查看>>
CRM系统的两个核心
查看>>
js如何获取response header信息
查看>>
python_文件的打开和关闭
查看>>
mysql archive存储引擎导入数据报duplicate key
查看>>
ADO.NET介绍
查看>>
iOS: 数据持久化方案
查看>>
Neo4j学习笔记
查看>>
【C#】【Thread】Monitor和Lock
查看>>
UVALive - 3635 - Pie(二分)
查看>>
jQuery的中文乱码问题[转]
查看>>
bzoj 2005 & 洛谷 P1447 [ Noi 2010 ] 能量采集 —— 容斥 / 莫比乌斯反演
查看>>
P1631 序列合并
查看>>