Leetcode 98. 验证二叉搜索树

Leetcode 98. 验证二叉搜索树

1、问题分析

题目链接:https://leetcode-cn.com/problems/validate-binary-search-tree/

具体思路是使用中序遍历,比较前置节点和当前节点的值大小,如果前置节点的值 大于等于 当前节点的值 说明不是有效的二叉搜索树提前结束,否则继续遍历

  代码我已经进行了详细的注释,理解应该没有问题,读者可以作为参考,如果看不懂(可以多看几遍),欢迎留言哦!我看到会解答一下。

2、问题解决

  笔者以C++方式解决。

#include "iostream"

using namespace std;

#include "algorithm"
#include "vector"
#include "queue"
#include "set"
#include "map"
#include "cstring"
#include "stack"

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */

struct TreeNode {
    int val;
    TreeNode *left;
    TreeNode *right;

    TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};

class Solution {
private:
    // 定义标志位 是否是有效的二叉搜索树
    // 0 是 ; 1 不是
    int flag = 0;
public:
    bool isValidBST(TreeNode *root) {
        // 初始化前置节点,没有使用 int 类型,因为会取到 INT_MIN
        // 需要做额外的判断,这里简单起见,直接使用 long 类型
        long temp = LONG_MIN;
        // 验证二叉搜索树
        dealChen(root, temp);
        return flag == 0;
    }

    /**
     * 具体思路是使用中序遍历,比较前置节点和当前节点的值大小,如果
     * 前置节点的值 大于等于 当前节点的值 说明不是有效的二叉搜索树
     * 提前结束,否则继续遍历
     * @param root
     * @param pre 注意这里是 引用类型,因为pre 节点需要随时变
     */
    void dealChen(TreeNode *root, long &pre) {
        // 不是有效的二叉搜索树 提前结束
        if (flag == 1) {
            return;
        }
        // 当前节点不为空
        if (root != NULL) {
            // 判断左子树
            dealChen(root->left, pre);
            // 不是有效的二叉搜索树 提前结束
            if (flag == 1) {
                return;
            }
            // 不是有效的二叉搜索树 提前结束
            if (pre >= root->val) {
                flag = 1;
                return;
            }
            // 设置当前节点的值为前置节点,继续下一次遍历
            pre = root->val;
            // 判断右子树
            dealChen(root->right, pre);
        }
    }
};

int main() {

    TreeNode *pNode1 = new TreeNode(1);
    TreeNode *pNode2 = new TreeNode(2);
    TreeNode *pNode3 = new TreeNode(3);

    pNode2->left = pNode1;
    pNode2->right = pNode3;

//    TreeNode *pNode1 = new TreeNode(1);
//    TreeNode *pNode3 = new TreeNode(3);
//    TreeNode *pNode4 = new TreeNode(4);
//    TreeNode *pNode5 = new TreeNode(5);
//    TreeNode *pNode6 = new TreeNode(6);
//
//    pNode5->left = pNode1;
//    pNode5->right = pNode4;
//    pNode4->left = pNode3;
//    pNode4->right = pNode6;

//    TreeNode *pNode1 = new TreeNode(1);
//    TreeNode *pNode2 = new TreeNode(1);
//    pNode1->left = pNode2;


    Solution *pSolution = new Solution;
    bool b = pSolution->isValidBST(pNode2);
    cout << b << endl;
    system("pause");
    return 0;
}

运行结果
在这里插入图片描述

有点菜,有时间再优化一下。

3、总结

  难得有时间刷一波LeetCode, 这次做一个系统的记录,等以后复习的时候可以有章可循,同时也期待各位读者给出的建议。算法真的是一个照妖镜,原来感觉自己也还行吧,但是算法分分钟教你做人。前人栽树,后人乘凉。在学习算法的过程中,看了前辈的成果,受益匪浅。
感谢各位前辈的辛勤付出,让我们少走了很多的弯路!
哪怕只有一个人从我的博客受益,我也知足了。
点个赞再走呗!欢迎留言哦!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值