作者: 负雪明烛
id: fuxuemingzhu
个人博客: http://fuxuemingzhu.cn/


题目地址:https://leetcode.com/problems/minimum-distance-between-bst-nodes/description/

题目描述

Given a Binary Search Tree (BST) with the root node root, return the minimum difference between the values of any two different nodes in the tree.

Example :

Input: root = [4,2,6,1,3,null,null]
Output: 1
Explanation:
Note that root is a TreeNode object, not an array. The given tree [4,2,6,1,3,null,null] is represented by the following diagram: 4
/ \
2 6
/ \
1 3 while the minimum difference in this tree is 1, it occurs between node 1 and node 2, also between node 3 and node 2.

Note:

  1. The size of the BST will be between 2 and 100.
  2. The BST is always valid, each node’s value is an integer, and each node’s value is different.

题目大意

求BST的两个节点之间的最小差值。

解题方法

中序遍历

看见BST想中序遍历是有序的啊~所以先进性中序遍历,得到有序列表,然后找出相邻的两个节点差值的最小值即可。

# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None class Solution(object):
def minDiffInBST(self, root):
"""
:type root: TreeNode
:rtype: int
"""
vals = []
def inOrder(root):
if not root:
return
inOrder(root.left)
vals.append(root.val)
inOrder(root.right)
inOrder(root)
return min([vals[i + 1] - vals[i] for i in xrange(len(vals) - 1)])

二刷的时候注意到和530. Minimum Absolute Difference in BST是完全一样的题,果然同样的代码就直接通过了。。不懂这个题的意义是什么。。

# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None class Solution:
def minDiffInBST(self, root):
"""
:type root: TreeNode
:rtype: int
"""
self.res = float("inf")
self.prev = None
self.inOrder(root)
return self.res def inOrder(self, root):
if not root: return
self.inOrder(root.left)
if self.prev:
self.res = min(self.res, root.val - self.prev.val)
self.prev = root
self.inOrder(root.right)

日期

2018 年 2 月 28 日
2018 年 11 月 14 日 —— 很严重的雾霾

最新文章

  1. Chrome - 怎样独立窗口打开开发人员工具
  2. 11月1日上午PHP------empty、 is_null、isset、unset的区别
  3. 7.2---蚂蚁相遇问题(CC150)
  4. ACM: poj 1094 Sorting It All Out - 拓扑排序
  5. Adele的生活
  6. python声明文件编码,必须在文件的第一行或第二行
  7. C#:通过Window API接口实现WiFi
  8. JS运动学习笔记 -- 任意值的运动框架(高/宽度,背景颜色,文本内容,透明度等)
  9. 同步or异步
  10. vs快捷键及常用设置(vs2012版)
  11. html5的本地存储localStorage和sessionStorage
  12. SwiftyUserDefaults-封装系统本地化的框架
  13. DjangoUeditor项目的集成
  14. selenium处理元素定位到了点击无效问题
  15. (后端)异常不仅仅是try/catch
  16. Java NIO系列教程(一)java NIO简介
  17. CSS选择符-----属性选择符
  18. Can't push you anymore...
  19. MFS - MooseFS 文件系统
  20. Dubbo -- 系统学习 笔记 -- 示例 -- 线程模型

热门文章

  1. 什么是总线、总线的类型、局部总线、局部总线类型和什么是接口方式?什么是IDE?什么是SCSI?
  2. Java 好用的东西
  3. Linux之sed命令常见用法
  4. Redis学习小结
  5. A Child's History of England.6
  6. 【JavaWeb安全】RMI-Remote Method Invocator
  7. 【编程思想】【设计模式】【行为模式Behavioral】观察者模式Observer
  8. 实时数据同步inotify+rsync
  9. 1888-jerry99的数列--factorial
  10. numpy基础教程--浅拷贝和深拷贝