LeetCode(剑指 Offer)- 33. 二叉搜索树的后序遍历序列

Posted 放羊的牧码

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode(剑指 Offer)- 33. 二叉搜索树的后序遍历序列相关的知识,希望对你有一定的参考价值。

题目链接:点击打开链接

题目大意:

解题思路

相关企业

  • 微软(Microsoft)
  • Facebook
  • 字节跳动

AC 代码

  • Java
class Solution 
    public boolean verifyPostorder(int[] postorder) 
        return recur(postorder, 0, postorder.length - 1);
    
    boolean recur(int[] postorder, int i, int j) 
        if(i >= j) return true;
        int p = i;
        while(postorder[p] < postorder[j]) p++;
        int m = p;
        while(postorder[p] > postorder[j]) p++;
        return p == j && recur(postorder, i, m - 1) && recur(postorder, m, j - 1);
    
  • C++
class Solution 
public:
    bool verifyPostorder(vector<int>& postorder) 
        return recur(postorder, 0, postorder.size() - 1);
    
private:
    bool recur(vector<int>& postorder, int i, int j) 
        if(i >= j) return true;
        int p = i;
        while(postorder[p] < postorder[j]) p++;
        int m = p;
        while(postorder[p] > postorder[j]) p++;
        return p == j && recur(postorder, i, m - 1) && recur(postorder, m, j - 1);
    
;

以上是关于LeetCode(剑指 Offer)- 33. 二叉搜索树的后序遍历序列的主要内容,如果未能解决你的问题,请参考以下文章

⭐算法入门⭐《二叉树 - 二叉搜索树》中等02 —— LeetCode 剑指 Offer 33. 二叉搜索树的后序遍历序列

LeetCode(剑指 Offer)- 33. 二叉搜索树的后序遍历序列

LeetCode:剑指Offer 05. 替换空格 (字符串)

leetcode-剑指 Offer 55 - II平衡二叉树

[LeetCode]剑指 Offer 33. 二叉搜索树的后序遍历序列

[LeetCode]剑指 Offer 33. 二叉搜索树的后序遍历序列