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

剑指OFFER----面试题33. 二叉搜索树的后序遍历序列

时间:2020-02-28 22:40:22      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:als   color   code   ++   lse   代码   tor   size   pre   

链接:https://leetcode-cn.com/problems/er-cha-sou-suo-shu-de-hou-xu-bian-li-xu-lie-lcof/

 

代码:

class Solution {
public:

    bool verifyPostorder(vector<int>& postorder) {
        return dfs(postorder, 0, postorder.size() - 1);
    }

    bool dfs(vector<int>& postorder, int l, int r) {
        if (l >= r) return true;
        int root = postorder[r];
        int k = l;
        while (k < r && postorder[k] < root) k++;
        int s = k;
        while (s < r && postorder[s] > root) s++;
        if (s != r) return false;
        return dfs(postorder, l, k - 1) && dfs(postorder, k + 1, r - 1);
    }
};

 

剑指OFFER----面试题33. 二叉搜索树的后序遍历序列

标签:als   color   code   ++   lse   代码   tor   size   pre   

原文地址:https://www.cnblogs.com/clown9804/p/12380603.html

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