zoukankan      html  css  js  c++  java
  • [LeetCode#98]Validate Binary Search Tree

    The problem: 

    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.

    confused what "{1,#,2,3}" means? > read more on how binary tree is serialized on OJ.


    OJ's Binary Tree Serialization:

    The serialization of a binary tree follows a level order traversal, where '#' signifies a path terminator where no node exists below.

    Here's an example:

       1
      / 
     2   3
        /
       4
        
         5
    
    The above binary tree is serialized as "{1,2,3,#,#,4,#,#,5}".
     
    My first solution(wrong): 
    public class Solution {
        public boolean isValidBST(TreeNode root) {
            if (root == null)
                return true;
    
            return helper(root);
        }
        
        private boolean helper(TreeNode temp_root) {
            
            if (temp_root == null)
                return true;
            
            if (temp_root.left != null) {
                if (temp_root.left.val >= temp_root.val)
                    return false;
            }
            
            if (temp_root.right != null) {
                if (temp_root.right.val <= temp_root.val)
                    return false;
            }
            
            return helper(temp_root.left) && helper(temp_root.right);
        }
        
    }

    Analysis:

    The recursion can only guarantee the comparsion between the temp_root with it's two direct children. 

    But the binary tree requries all left sub-tree's elements should less than temp_root, and all right sub-tree's elements should greater than temp_root.

    Consider the case: {10, 5, 15, #, #, 6, 10}

    The right way:

    The idea behind this problem is using the order properity of inorder traversal on binary search tree.
    Key: if a tree is a binary tree, the inorder traversal on it must lead to an order series(ascending).
    binary tree <=====>(inorder traversal) ordered array(ascending)

    Thus, by using inorder traversal on the tree, we could compare each element in the series array with its previous element. (This could be achieved by using an Arraylist) This is cool!!!

    At each element, we use following recursion rule:
    1. valid left & right sub-trees.
    2. check the current node's valid against its previous node. (inorder traversal)

    But, since we use inorder traversal, we could write it in following way:
    1. check left sub-tree's validation.
    2. compare the current node's against its previous node.
    3. check right sub-tree's validation.

    The right solution:

    public class Solution {
        public boolean isValidBST(TreeNode root) {
            if (root == null)
                return true;
    
            ArrayList<TreeNode> pre = new ArrayList<TreeNode> (); 
            pre.add(null);
    
            return helper(root, pre);
        }
        
        private boolean helper(TreeNode temp_root, ArrayList<TreeNode>pre) {
            
            if (temp_root == null)
                return true;
            
            boolean left_flag;
            boolean right_flag;
            
            left_flag = helper(temp_root.left, pre);
            
            if (pre.get(0) != null && pre.get(0).val >= temp_root.val) 
            //must be strict less than, otherwise it is invalid
                return false;
            pre.set(0, temp_root);
        
            right_flag = helper(temp_root.right, pre);
            
            return left_flag && right_flag; 
        }
    }
  • 相关阅读:
    VS2019 离线安装方法详解
    VS2019 实用操作
    WIN7 X64位系统安装SQL SERVER2008失败总结
    给reportview传参数的操作过程
    山寨dell mini 3i的问题
    sql backup
    基于wince.net的环境,使用pocketBuilder调用webservice所需安装环境和步骤
    写了一个通用的用户选择页面,记录一下调用方法
    回顾这几年开发医药CRM的历程
    Cumulative Update package 3 for SQL Server 2008 R2三个补丁下载地址,官网下载不直接给地址,不知为什么
  • 原文地址:https://www.cnblogs.com/airwindow/p/4212157.html
Copyright © 2011-2022 走看看