zoukankan      html  css  js  c++  java
  • 98. 验证二叉搜索树-中序遍历-中等难度

    问题描述

    给定一个二叉树,判断其是否是一个有效的二叉搜索树。

    假设一个二叉搜索树具有如下特征:

    节点的左子树只包含小于当前节点的数。
    节点的右子树只包含大于当前节点的数。
    所有左子树和右子树自身必须也是二叉搜索树。
    示例 1:

    输入:
    2
    /
    1 3
    输出: true
    示例 2:

    输入:
    5
    /
    1 4
      /
      3 6
    输出: false
    解释: 输入为: [5,1,4,null,null,3,6]。
      根节点的值为 5 ,但是其右子节点值为 4 。

    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/validate-binary-search-tree

    解答

    /**
     * Definition for a binary tree node.
     * public class TreeNode {
     *     int val;
     *     TreeNode left;
     *     TreeNode right;
     *     TreeNode(int x) { val = x; }
     * }
     */
     //中序遍历,看得到的list是否含有逆序的元素。
    class Solution {
        List<TreeNode> temp;
        public boolean isValidBST(TreeNode root) {
            if(root == null)return true;
            temp = new ArrayList<TreeNode>();
            dfs(root);
            int size = temp.size();
            if(size == 1)return true;
            int min = temp.get(0).val;
            for(int i=1;i<size;i++){
                if(min < temp.get(i).val)min = temp.get(i).val;
                else return false;
            }
            return true;
        }
        public void dfs(TreeNode root){
            if(root == null)return;
            dfs(root.left);
            temp.add(root);
            dfs(root.right);
        }
    }
  • 相关阅读:
    Polygon对象和Polyline对象的组成形式
    JavaScript脚本语言特色时钟
    洛谷——T P2136 拉近距离
    HDU——T 1498 50 years, 50 colors
    HDU——T 2119 Matrix
    HDU——T 1054 Strategic Game
    洛谷—— P2896 [USACO08FEB]一起吃饭Eating Together
    Django进阶之Form
    March 28 2017 Week 13 Tuesday
    March 27 2017 Week 13 Monday
  • 原文地址:https://www.cnblogs.com/xxxxxiaochuan/p/13298572.html
Copyright © 2011-2022 走看看