当前位置:网站首页>【二叉树】节点与其祖先之间的最大差值
【二叉树】节点与其祖先之间的最大差值
2022-07-04 22:35:00 【豪冷啊】
0x00 题目
给定二叉树的根节点 root
找出存在于 不同
节点 A
和 B
之间的最大值 V
其中 V = |A.val - B.val|
且 A
是 B
的祖先
如果 A
的任何子
节点之一为 B
或者 A
的任何子
节点是 B
的祖先
那么我们认为 A
是 B
的祖先
粟子:
我们有大量的节点与其祖先的差值,其中一些如下:|8 - 3| = 5
|3 - 7| = 4
|8 - 1| = 7
|10 - 13| = 3
在所有可能的差值中,最大值 7
由 |8 - 1| = 7
得出
0x01 思路
单看一条路径:8-3-6-4
要计算差值8-3,8-6,8-4
3-6,3-4
6-4
然后在这些差值中
取得最大
的一个差值
要想差值最大
就要在路径中找到最大值
和最小值
所以
每经过一个节点
就可以更新
最大值和最小值
并且求出差值
0x02 解法
语言:Swift
树节点:TreeNode
public class TreeNode {
public var val: Int
public var left: TreeNode?
public var right: TreeNode?
public init() { self.val = 0; self.left = nil; self.right = nil; }
public init(_ val: Int) { self.val = val; self.left = nil; self.right = nil; }
public init(_ val: Int, _ left: TreeNode?, _ right: TreeNode?) {
self.val = val
self.left = left
self.right = right
}
}
解法:
func maxAncestorDiff(_ root: TreeNode?) -> Int {
guard let root = root else { return 0 }
var res = Int.min
func find(_ root: TreeNode?, _ maxVal: Int, _ minVal: Int) {
guard let root = root else { return }
// 计算差值
var max1 = abs(maxVal - root.val)
var min1 = abs(minVal - root.val)
// 获取最大差值
let big = max(max1, min1)
// 更新结果
res = max(res, big)
// 更新最大,最小值
max1 = max(maxVal, root.val)
min1 = min(minVal, root.val)
// 前往下一层
find(root.left, max1, min1)
find(root.right, max1, min1)
}
find(root, root.val, root.val)
return res
}
0x03 我的作品
欢迎体验我的作品之一:小五笔
五笔学习好帮手App Store
搜索即可~
边栏推荐
- 攻防世界 MISC 進階區 Erik-Baleog-and-Olaf
- Wake up day, how do I step by step towards the road of software testing
- Gnawing down the big bone - sorting (II)
- UML diagram memory skills
- Redis入门完整教程:哈希说明
- 浅聊一下中间件
- 啃下大骨头——排序(二)
- Create Ca and issue certificate through go language
- 微信公众号解决从自定义菜单进入的缓存问题
- Install the gold warehouse database of NPC
猜你喜欢
[the 2023 autumn recruitment of MIHA tour] open [the only exclusive internal push code of school recruitment eytuc]
Redis introduction complete tutorial: detailed explanation of ordered collection
共创软硬件协同生态:Graphcore IPU与百度飞桨的“联合提交”亮相MLPerf
Redis入门完整教程:慢查询分析
Detailed explanation of heap sort code
Redis入门完整教程:Bitmaps
Hit the core in the advanced area of misc in the attack and defense world
Redis入门完整教程:集合详解
A complete tutorial for getting started with redis: transactions and Lua
常用技术指标之一文读懂BOLL布林线指标
随机推荐
云服务器设置ssh密钥登录
Analysis of environmental encryption technology
攻防世界 MISC 进阶区 can_has_stdio?
Sobel filter
【ODX Studio編輯PDX】-0.2-如何對比Compare兩個PDX/ODX文件
Redis getting started complete tutorial: Geo
Record: how to scroll screenshots of web pages on Microsoft edge in win10 system?
Redis入门完整教程:GEO
【机器学习】手写数字识别
Feature scaling normalization
Attack and defense world misc advanced zone 2017_ Dating_ in_ Singapore
Redis入门完整教程:HyperLogLog
Google Earth engine (GEE) - tasks upgrade enables run all to download all images in task types with one click
Attack and defense world misc advanced area Hong
On-off and on-off of quality system construction
MySQL Architecture - user rights and management
Redis入门完整教程:初识Redis
记录:关于Win10系统中Microsoft Edge上的网页如何滚动截屏?
10 schemes to ensure interface data security
The overview and definition of clusters can be seen at a glance