博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[leetcode-671-Second Minimum Node In a Binary Tree]
阅读量:6223 次
发布时间:2019-06-21

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

Given a non-empty special binary tree consisting of nodes with the non-negative value, where each node in this tree has exactly two or 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.

思路:

用set存储遍历的值。取第二个即可。但是感觉不是什么好办法。。。以为么有利用树的结构信息。。暂时先这样。。

void pret(TreeNode*root, set
&s){ if (root == NULL)return; s.insert(root->val); pret(root->left, s); pret(root->right, s); }int findSecondMinimumValue(TreeNode* root){ if (root == NULL)return -1; set
s; pret(root, s); if (s.size() < 2)return -1; auto it = s.begin(); it++; return *it;}

 

转载于:https://www.cnblogs.com/hellowooorld/p/7469166.html

你可能感兴趣的文章
App开发中甲乙方冲突会闹出啥后果?H5 APP 开发可以改变现状吗
查看>>
jquery的checkbox,radio,select等方法总结
查看>>
Linux coredump
查看>>
Ubuntu 10.04安装水晶(Mercury)无线网卡驱动
查看>>
Myeclipes快捷键
查看>>
我的友情链接
查看>>
ToRPC:一个双向RPC的Python实现
查看>>
我的友情链接
查看>>
nginx在reload时候报错invalid PID number
查看>>
神经网络和深度学习-第二周神经网络基础-第二节:Logistic回归
查看>>
Myeclipse代码提示及如何设置自动提示
查看>>
c/c++中保留两位有效数字
查看>>
ElasticSearch 2 (32) - 信息聚合系列之范围限定
查看>>
VS2010远程调试C#程序
查看>>
[MicroPython]TurniBit开发板DIY自动窗帘模拟系统
查看>>
由String类的Split方法所遇到的两个问题
查看>>
Python3.4 12306 2015年3月验证码识别
查看>>
从Handler.post(Runnable r)再一次梳理Android的消息机制(以及handler的内存泄露)
查看>>
windows查看端口占用
查看>>
Yii用ajax实现无刷新检索更新CListView数据
查看>>