这是悦乐书的第285次更新,第302篇原创

01 看题和准备

今天介绍的是LeetCode算法题中Easy级别的第153题(顺位题号是671)。给定非空的特殊二叉树,其由具有非负值的节点组成,其中该树中的每个节点具有恰好两个或零个子节点。 如果节点具有两个子节点,则该节点的值是其两个子节点中的较小值。给定这样的二叉树,您需要输出由整个树中所有节点的值组成的集合中的第二个最小值。如果不存在这样的第二个最小值,则输出-1。例如:

  1. 2
  2. / \
  3. 2 5
  4. / \
  5. 5 7

输出:5

  1. 2
  2. / \
  3. 2 2

输出:-1

本次解题使用的开发工具是eclipse,jdk使用的版本是1.8,环境是win7 64位系统,使用Java语言编写和测试。

02 第一种解法

使用HashSet和递归。将每一个节点值添加进set,然后遍历set,找出其中第二小的值,最后输出即可。

  1. /**
  2. * Definition for a binary tree node.
  3. * public class TreeNode {
  4. * int val;
  5. * TreeNode left;
  6. * TreeNode right;
  7. * TreeNode(int x) { val = x; }
  8. * }
  9. */
  10. class Solution {
  11. public int findSecondMinimumValue(TreeNode root) {
  12. Set<Integer> set = new HashSet<Integer>();
  13. helper(root, set);
  14. int min = Integer.MAX_VALUE;
  15. int second = Integer.MAX_VALUE;
  16. for (int value : set) {
  17. if (value < min) {
  18. second = min;
  19. min = value;
  20. } else if (value < second) {
  21. second = value;
  22. }
  23. }
  24. if (min == second) {
  25. return -1;
  26. }
  27. return second == Integer.MAX_VALUE ? -1 : second;
  28. }
  29. public void helper(TreeNode node, Set<Integer> set){
  30. if (node == null) {
  31. return ;
  32. }
  33. set.add(node.val);
  34. helper(node.left, set);
  35. helper(node.right, set);
  36. }
  37. }

03 第二种解法

我们也可以不使用HashSet。依旧使用递归,但是将最小值,第二最小值作为了全局变量,最小值只申明,在方法内部初始化为根节点的节点值。在递归方法里,如果当前节点值大于最小值且小于第二小值,那么就更新第二小的值;如果当前节点值等于最小值,就继续遍历其左子节点和右子节点。

  1. /**
  2. * Definition for a binary tree node.
  3. * public class TreeNode {
  4. * int val;
  5. * TreeNode left;
  6. * TreeNode right;
  7. * TreeNode(int x) { val = x; }
  8. * }
  9. */
  10. class Solution {
  11. int min ;
  12. int second = Integer.MAX_VALUE;
  13. public int findSecondMinimumValue(TreeNode root) {
  14. min = root.val;
  15. helper(root);
  16. if (min == second) {
  17. return -1;
  18. }
  19. return second == Integer.MAX_VALUE ? -1 : second;
  20. }
  21. public void helper(TreeNode node) {
  22. if (node == null) {
  23. return ;
  24. }
  25. if (node.val > min && node.val < second) {
  26. second = node.val;
  27. } else if (node.val == min) {
  28. helper(node.left);
  29. helper(node.right);
  30. }
  31. }
  32. }

04 第三种解法

针对第一种解法,也可以使用迭代的方式。

  1. /**
  2. * Definition for a binary tree node.
  3. * public class TreeNode {
  4. * int val;
  5. * TreeNode left;
  6. * TreeNode right;
  7. * TreeNode(int x) { val = x; }
  8. * }
  9. */
  10. class Solution {
  11. public int findSecondMinimumValue(TreeNode root) {
  12. Set<Integer> set = new HashSet<Integer>();
  13. Stack<TreeNode> stack = new Stack<TreeNode>();
  14. stack.push(root);
  15. while (!stack.isEmpty()) {
  16. TreeNode temp = stack.pop();
  17. set.add(temp.val);
  18. if (temp.left != null) {
  19. stack.push(temp.left);
  20. }
  21. if (temp.right != null) {
  22. stack.push(temp.right);
  23. }
  24. }
  25. int min = Integer.MAX_VALUE;
  26. int second = Integer.MAX_VALUE;
  27. for (int value : set) {
  28. if (value < min) {
  29. second = min;
  30. min = value;
  31. } else if (value < second) {
  32. second = value;
  33. }
  34. }
  35. if (min == second) {
  36. return -1;
  37. }
  38. return second == Integer.MAX_VALUE ? -1 : second;
  39. }
  40. }

05 第四种解法

针对第二种解法,也可以使用迭代的方式。

  1. /**
  2. * Definition for a binary tree node.
  3. * public class TreeNode {
  4. * int val;
  5. * TreeNode left;
  6. * TreeNode right;
  7. * TreeNode(int x) { val = x; }
  8. * }
  9. */
  10. class Solution {
  11. public int findSecondMinimumValue(TreeNode root) {
  12. int min = root.val;
  13. int second = Integer.MAX_VALUE;
  14. Stack<TreeNode> stack = new Stack<TreeNode>();
  15. stack.push(root);
  16. while (!stack.isEmpty()) {
  17. TreeNode node = stack.pop();
  18. if (node.val > min && node.val < second) {
  19. second = node.val;
  20. } else if (node.val == min) {
  21. if (node.left != null) {
  22. stack.push(node.left);
  23. }
  24. if (node.right != null) {
  25. stack.push(node.right);
  26. }
  27. }
  28. }
  29. if (min == second) {
  30. return -1;
  31. }
  32. return second == Integer.MAX_VALUE ? -1 : second;
  33. }
  34. }

06 小结

算法专题目前已日更超过四个月,算法题文章153+篇,公众号对话框回复【数据结构与算法】、【算法】、【数据结构】中的任一关键词,获取系列文章合集。

以上就是全部内容,如果大家有什么好的解法思路、建议或者其他问题,可以下方留言交流,点赞、留言、转发就是对我最大的回报和支持!

LeetCode算法题-Second Minimum Node In a Binary Tree(Java实现)的更多相关文章

  1. 【LeetCode】671. Second Minimum Node In a Binary Tree 解题报告(Python)

    作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 找出所有值再求次小值 遍历时求次小值 日期 题目地址 ...

  2. Python 解LeetCode:671. Second Minimum Node In a Binary Tree

    题目在这里,要求一个二叉树的倒数第二个小的值.二叉树的特点是父节点的值会小于子节点的值,父节点要么没有子节点,要不左右孩子节点都有. 分析一下,根据定义,跟节点的值肯定是二叉树中最小的值,剩下的只需要 ...

  3. LeetCode题解之Second Minimum Node In a Binary Tree

    1.题目描述 2.问题分析 使用set. 3.代码 set<int> s; int findSecondMinimumValue(TreeNode* root) { dfs(root); ...

  4. LeetCode 671. 二叉树中第二小的节点(Second Minimum Node In a Binary Tree) 9

    671. 二叉树中第二小的节点 671. Second Minimum Node In a Binary Tree 题目描述 给定一个非空特殊的二叉树,每个节点都是正数,并且每个节点的子节点数量只能为 ...

  5. 【Leetcode_easy】671. Second Minimum Node In a Binary Tree

    problem 671. Second Minimum Node In a Binary Tree 参考 1. Leetcode_easy_671. Second Minimum Node In a ...

  6. [leetcode]1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree

    [leetcode]1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree 链接 leetcode 描述    ...

  7. LeetCode算法题-Number of Lines To Write String(Java实现)

    这是悦乐书的第319次更新,第340篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第188题(顺位题号是806).我们要将给定字符串S的字母从左到右写成行.每行最大宽度为 ...

  8. LeetCode算法题-Find Smallest Letter Greater Than Target(Java实现)

    这是悦乐书的第306次更新,第326篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第175题(顺位题号是744).给定一个仅包含小写字母的有序字符数组,并给定目标字母目标 ...

  9. LeetCode算法题-Kth Largest Element in a Stream(Java实现)

    这是悦乐书的第296次更新,第315篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第164题(顺位题号是703).设计一个类来查找流中第k个最大元素.请注意,它是排序顺序 ...

随机推荐

  1. Python内置函数(27)——hasattr

    英文文档: hasattr(object, name) The arguments are an object and a string. The result is True if the stri ...

  2. dotnet core使用开源组件FastHttpApi进行web应用开发

    FastHttpApi相对于asp.net mvc来说有着更轻量和性能上的优势,性能上面就不在这里介绍了(具体可查看 https://github.com/IKende/FastHttpApi).在这 ...

  3. 文本主题模型之非负矩阵分解(NMF)

    在文本主题模型之潜在语义索引(LSI)中,我们讲到LSI主题模型使用了奇异值分解,面临着高维度计算量太大的问题.这里我们就介绍另一种基于矩阵分解的主题模型:非负矩阵分解(NMF),它同样使用了矩阵分解 ...

  4. 【Node.js】一、搭建基于Express框架运行环境+更换HTML视图引擎

      1)安装express generator生成器 这个express generator生成器类似于vue-cli脚手架工具,用来创建一个后端项目,首先我们要对生成器进行全局安装,在cmd中输入下 ...

  5. GUID获取16位19位22位的唯一字符串

    /// <summary> /// 根据GUID获取16位的唯一字符串 /// </summary> /// <param name=\"guid\" ...

  6. JS输入框去除负号(限定输入正数)

    onkeyup="(this.v=function(){this.value=this.value.replace(/\-/g,\'\');}).call(this)" 示例: & ...

  7. Maven(十)通过Maven缺失servlet.api的解决方式看provide(依赖范围)

    1. Eclipse解决servlet.api缺失的方法参考此处 2. 通过配置pom.xml里依赖来添加servlet.api 在里面添加如下代码保存后错误立刻消失 <dependencies ...

  8. MySQL优化特定类型的查询

    优化关联查询 如果想要优化使用关联的查询,我们需要特别留意以下几点: 确保ON或者USING子句中的列上有索引.在创建索引的时候需要考虑到关联的顺序.当表A和表B用列c关联的时候,如果优化器的关联顺序 ...

  9. 阿里巴巴TXD前端小报 - 2019年3月刊

    原文:前端小报 - 201903月刊 Fundebug经授权转载,版权归原作者所有. [Alibaba-TXD 前端小报]- 热门前端技术快报,聚焦业界新视界:不知不觉 2019 年已经过去了 1/4 ...

  10. WEB前端开发记录PS常见操作

    1.相邻2个层合并的快捷键方法:先选择上面的一个层,再按ctrl+e. 2.合并一个组内的多个层或组:在该组单击右键,选择“转换为智能对象”,然后可对其进行其它操作,比如:截取该组的为一张图片:ctr ...