【LeetCode】530.二叉搜索树的最小绝对差 题意:给你一个二叉搜索树的根节点 root ,返回 树中任意两不同节点值之间的最小差值 。 差值是一个正数,其数值等于两值之差的绝对值。 思路:中序遍历拿到递增序列,然后求相邻两个数最小值即可。也可以在遍历过程中就拿到这个最小值,此时需要用指针记录上一个节点。 代码A: /*** Definition for a binary tree
Click on the picture of Carl Franklin at the right to see something pretty amazing. 单击右边的卡尔·富兰克林的图片,可以看到令人惊叹的东西。 It's Carl as a one-man-band playing piano, drums, bass and guitar, mixed together s