博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
671. Second Minimum Node In a Binary Tree 非递减二叉树中第二小的元素
阅读量:4990 次
发布时间:2019-06-12

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

[抄题]:

Given a non-empty special binary tree consisting of nodes with the non-negative value, where each node in this tree has exactly twoor zero sub-node. If the node has two sub-nodes, then this node's value is the smaller value among its two sub-nodes. 

Given such a binary tree, you need to output the second minimum value in the set made of all the nodes' value in the whole tree. 

If no such second minimum value exists, output -1 instead.

Example 1:

Input:     2   / \  2   5     / \    5   7Output: 5Explanation: The smallest value is 2, the second smallest value is 5.

 

Example 2:

Input:     2   / \  2   2Output: -1Explanation: The smallest value is 2, but there isn't any second smallest value.

 [暴力解法]:

时间分析:

空间分析:

[奇葩输出条件]:

要判断节点值是不是空节点产生的-1

[奇葩corner case]:

光有一个头节点,也无法输出

[思维问题]:

以为要用break:好像总体来说用得并不多,此题中只要判断是否不相等就行了

[一句话思路]:

DC女王算法只是一种思想,没有具体成型的模板

[输入量]:空: 正常情况:特大:特小:程序里处理到的特殊情况:异常情况(不合法不合理的输入):

[画图]:

[一刷]:

  1. traverse的表达式自身就带有递归循环的效果,不用再加while了。用于改变left的值,就必须把left放在左边

[二刷]:

[三刷]:

[四刷]:

[五刷]:

  [五分钟肉眼debug的结果]:

[总结]:

能用等号就少用break

[复杂度]:Time complexity: O(n) Space complexity: O(n)

[英文数据结构或算法,为什么不用别的数据结构或算法]:

dc的思想其实没有什么普适性

[关键模板化代码]:

[其他解法]:

[Follow Up]:

[LC给出的题目变变变]:

230. Kth Smallest Element in a BST 第k小,用二分法

 [代码风格] :

/** * Definition for a binary tree node. * public class TreeNode { *     int val; *     TreeNode left; *     TreeNode right; *     TreeNode(int x) { val = x; } * } */class Solution {    public int findSecondMinimumValue(TreeNode root) {        //corner case        if (root == null) {            return -1;        }        if (root.left == null && root.right == null) {            return -1;        }        //define left, right first        int left = root.left.val;        int right = root.right.val;        //find next        if (left == root.val) {            left = findSecondMinimumValue(root.left);        }        if (right == root.val) {            right = findSecondMinimumValue(root.right);        }        //compare        if (left != -1 && right != -1) {            return Math.min(left, right);        }else if (left != -1) {            return left;        }else {            return right;        }    }}
View Code

 

转载于:https://www.cnblogs.com/immiao0319/p/8594179.html

你可能感兴趣的文章
生成awr报告
查看>>
cocos2d-x 3.0rc2 对于每个包执行情况的重要平台 (超级方便)
查看>>
Android 深入解析光传感器(二)
查看>>
Ansible@一个高效的配置管理工具--Ansible configure management--翻译(八)
查看>>
【bzoj4552/Tjoi2016&Heoi2016】排序——二分+线段树/平衡树+线段树分裂与合并
查看>>
Windows Internals学习笔记(八)IO系统
查看>>
sql插件,SQLPrompt
查看>>
Objetive-C 属性和线程安全
查看>>
mybatis pagehelper实现分页
查看>>
很牛的javascript日期转换函数
查看>>
javascript格式化json显示
查看>>
Redis 在 SNS 类应用中的最佳实践有哪些?
查看>>
关于Unity 动画绘制原理
查看>>
django-xadmin后台开发
查看>>
Canvas链式操作
查看>>
学渣乱搞系列之网络流学习
查看>>
Acdream A - Unique Attack
查看>>
java遍历List的多种方法
查看>>
【投票】你心目中的Excel催化剂价值有多大(附主流国内外收费插件供参考)?...
查看>>
算法复习——半平面交(bzoj2618凸多边形)
查看>>