码迷,mamicode.com
首页 > 其他好文 > 详细

46.二叉搜索树的后序遍历序列

时间:2020-02-15 18:27:30      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:int   bsp   div   sequence   code   pre   turn   alt   style   

技术图片

 

 

解题思路:利用二叉搜索树性质

技术图片

 

 可以确定10为根节点,

技术图片

 

 

class Solution {
public:
    vector<int> seq;
    
    bool verifySequenceOfBST(vector<int> sequence) {
        seq = sequence;
        return dfs(0, seq.size() - 1);
    }
    bool dfs(int l, int r) {
        if (l >= r)  return true; //空树
        int root = seq[r];
        int k = l;
        while(k < r && seq[k] < root) k ++;  //找到根节点的左子树节点
        for(int i = k; i < r; i ++) {  //判断一下右子树里面的所有点都比根节点大,满足,则合法
            if (seq[i] < root)  //不满足,返回false
                return false;
        }
        return dfs(l, k - 1) && dfs(k, r-1);//递归判断左右子树

    }
};

 

46.二叉搜索树的后序遍历序列

标签:int   bsp   div   sequence   code   pre   turn   alt   style   

原文地址:https://www.cnblogs.com/make-big-money/p/12312959.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!