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);
        }
    }
  • 相关阅读:
    Elasticsearch源码加载到eclipse调试
    Elasticsearch基础教程
    关于JAVA EE项目在WEB-INF目录下的jsp页面如何访问WebRoot中的CSS和JS文件
    访问WEB-INF下的JSP (转载)
    SqlServer的代理问题
    SqlServer进行程序跟踪
    git简单的修改
    Linux部署项目
    网址仓库
    Linux基础
  • 原文地址:https://www.cnblogs.com/xxxxxiaochuan/p/13298572.html
Copyright © 2011-2022 走看看