Leetcode#530. Minimum Absolute Difference in BST
Problem
Given the root
of a Binary Search Tree (BST), return the minimum absolute difference between the values of any two different nodes in the tree.
Example 1:
!https://assets.leetcode.com/uploads/2021/02/05/bst1.jpg
1 | Input: root = [4,2,6,1,3] |
Example 2:
!https://assets.leetcode.com/uploads/2021/02/05/bst2.jpg
1 | Input: root = [1,0,48,null,null,12,49] |
Constraints:
- The number of nodes in the tree is in the range
[2, 10^4]
. 0 <= Node.val <= 10^5
Solve
法一
由於有有序
性質、且正整數
遍歷一遍,後項減前項,找出最小即可
1 | class Solution: |
Note
BST 若為有序
遍歷的順序為
1 2 3 4 5 6 7
root.left.left → root.left → root.left.right → root → root.right.left → root.right → root.right.right
1 | 4 |
down-top 的走法
1 | def down_top(root): |
本部落格所有文章除特別聲明外,均採用 CC BY-NC-SA 4.0 許可協議。轉載請註明來自 Imisky!
評論