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

    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.
    /**
     * Definition for binary tree
     * struct TreeNode {
     *     int val;
     *     TreeNode *left;
     *     TreeNode *right;
     *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
     * };
     */
    class Solution {
    public:
        bool isValidBST(TreeNode *root) {
            vector<int> InOrderVal;
            InOrderTraverse(root,InOrderVal);
            int len = InOrderVal.size();
            for(int i=1;i<len;i++){
             if(InOrderVal[i]<=InOrderVal[i-1])
                 return false;
            }
            return true;
        }
    private:
        void InOrderTraverse(TreeNode *p,vector<int> &res){
    
    
          if(p!=NULL){
              InOrderTraverse(p->left,res);
              res.push_back(p->val);
              InOrderTraverse(p->right,res);
          }
        }
    };
  • 相关阅读:
    GitHub Interesting Collection
    使用 CSS3 Flexible Boxes 布局
    消失的属性
    浅谈 JavaScript 模块化编程
    为你的 Javascript 加点咖喱
    软件测试
    osi七层模型
    3_Hydra(爆破神器)
    2_NC(瑞士军刀)
    1_HTTP协议详解
  • 原文地址:https://www.cnblogs.com/Xylophone/p/3894041.html
Copyright © 2011-2022 走看看