首页 > 其他 > 详细

LeetCode | Validate Binary Search Tree

时间:2014-03-03 09:06:46      阅读:510      评论:0      收藏:0      [点我收藏+]

题目

Given a binary tree, determine if it is a valid binary search tree (BST).

Assume a BST is defined as follows:

  • The left subtree of a node contains only nodes with keys less than the node‘s key.
  • The right subtree of a node contains only nodes with keys greater than the node‘s key.
  • Both the left and right subtrees must also be binary search trees.
分析

这题两种写法:

1. 采用LeetCode | Recover Binary Search Tree中的思路:利用中序遍历结果的单调递增特性进行判断(解法1);

2. 利用子树上下界的限制进行递归判断(解法2)

解法1

public class ValidateBinarySearchTree {
	private TreeNode pre;

	public boolean isValidBST(TreeNode root) {
		pre = null;
		return inorder(root);
	}

	private boolean inorder(TreeNode root) {
		if (root == null) {
			return true;
		}
		if (!inorder(root.left)) {
			return false;
		}
		if (pre != null && pre.val >= root.val) {
			return false;
		}
		pre = root;
		return inorder(root.right);
	}
}
解法2

public class ValidateBinarySearchTree {
	public boolean isValidBST(TreeNode root) {
		return solve(root, Integer.MIN_VALUE, Integer.MAX_VALUE);
	}

	private boolean solve(TreeNode root, int min, int max) {
		if (root == null) {
			return true;
		}
		if (root.val > min && root.val < max) {
			return solve(root.left, min, root.val)
					&& solve(root.right, root.val, max);
		}
		return false;
	}
}

LeetCode | Validate Binary Search Tree,布布扣,bubuko.com

LeetCode | Validate Binary Search Tree

原文:http://blog.csdn.net/perfect8886/article/details/20284359

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!