LeetCode-98 验证二叉搜索树-中序遍历

示例 1:

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

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

代码

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
    vector seq;
public:
    bool isValidBST(TreeNode* root) {
        if(root == NULL){
            return true;
        }
        inOrder(root);
        //判断二叉树的中序遍历序列是否递增
        for(int i=0;i= seq[i+1])
                return false;
        }
        return true;
    }
    
    void inOrder(TreeNode* root){
        if(root == NULL) return;
        //遍历左子树
        inOrder(root -> left);
        //遍历根节点
        seq.push_back(root -> val);
        //遍历右子树
        inOrder(root -> right);
    }
};

你可能感兴趣的:(LeetCode-98 验证二叉搜索树-中序遍历)