Largest BST Subtree
https://leetcode.com/problems/largest-bst-subtree/description/
Given a binary tree, find the largest subtree which is a Binary Search Tree (BST), where largest means subtree with largest number of nodes in it.
Note:
A subtree must include all of its descendants.
Here's an example:
5 15
/ \
1 8 7
The Largest BST Subtree in this case is the highlighted one.
The return value is the subtree's size, which is 3.
Follow up:
Can you figure out ways to solve it with O(n) time complexity?
Thoughts
分治, 检查当前点是否满足BST条件, 即当左右子树都是BST时,node.val比左子树最大值大, 比右子树最小值小. 因此局部需要保存三个值, res[0]保存当前节点和子树构成bst时的size, 置为-1如果不能构成bst, res[1]保存能构成bst时整棵子树的最小值, res[2]保存子树最大值. 外加一个全局变量保存全局当前能构成的最大bst是多大.
Code
Analysis
时间复杂度O(N).
Last updated
Was this helpful?