671. 二叉树中第二小的节点

二叉树中第二小的节点 #

题目 #

给定一个非空特殊的二叉树,每个节点都是正数,并且每个节点的子节点数量只能为  2  或  0。如果一个节点有两个子节点的话,那么这个节点的值不大于它的子节点的值。

给出这样的一个二叉树,你需要输出所有节点中的第二小的值。如果第二小的值不存在的话,输出 -1 。

示例 1:

输入:
    2
   / \
  2   5
     / \
    5   7

输出: 5
说明: 最小的值是 2 ,第二小的值是 5  。

示例 2:

输入:
    2
   / \
  2   2

输出: -1
说明: 最小的值是 2, 但是不存在第二小的值。

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. More formally, the property root.val = min(root.left.val, root.right.val) always holds.

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   7

Output: 5
Explanation: The smallest value is 2, the second smallest value is 5.

Example 2:

Input:
    2
   / \
  2   2

Output: -1
Explanation: The smallest value is 2, but there isn't any second smallest value.

分析 #

root 肯定是最小的。 那就维护一个大于 root 的最小值,遍历整棵树,如果这个值不存在,就返回 -1

题解 #

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None

class Solution:
    def findSecondMinimumValue(self, root: TreeNode) -> int:
        if root is None:
            return -1
        secondMin = self.getSecodeMin(root, root.val, float('inf'))
        if secondMin == float('inf'):
            return -1
        else:
            return secondMin

    def getSecodeMin(self, node: TreeNode, rootVal: int, secondMin: int) -> int:
        if node is None:
            return secondMin

        if node.val != rootVal and node.val < secondMin:
            secondMin = node.val
            print(secondMin)

        return min(self.getSecodeMin(node.left, rootVal, secondMin), self.getSecodeMin(node.right, rootVal, secondMin))

本文访问量

本站总访问量

本站总访客数