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

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

题目链接:点击打开链接

题目大意:

解题思路

image.png

相关企业

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

AC 代码

  • Java
classSolution {
publicbooleanverifyPostorder(int[] postorder) {
returnrecur(postorder, 0, postorder.length-1);
    }
booleanrecur(int[] postorder, inti, intj) {
if(i>=j) returntrue;
intp=i;
while(postorder[p] <postorder[j]) p++;
intm=p;
while(postorder[p] >postorder[j]) p++;
returnp==j&&recur(postorder, i, m-1) &&recur(postorder, m, j-1);
    }
}
  • C++
classSolution {
public:
boolverifyPostorder(vector<int>&postorder) {
returnrecur(postorder, 0, postorder.size() -1);
    }
private:
boolrecur(vector<int>&postorder, inti, intj) {
if(i>=j) returntrue;
intp=i;
while(postorder[p] <postorder[j]) p++;
intm=p;
while(postorder[p] >postorder[j]) p++;
returnp==j&&recur(postorder, i, m-1) &&recur(postorder, m, j-1);
    }
};
目录
相关文章
|
2月前
【LeetCode 45】701.二叉搜索树中的插入操作
【LeetCode 45】701.二叉搜索树中的插入操作
10 1
|
2月前
【LeetCode 44】235.二叉搜索树的最近公共祖先
【LeetCode 44】235.二叉搜索树的最近公共祖先
18 1
|
2月前
【LeetCode 48】108.将有序数组转换为二叉搜索树
【LeetCode 48】108.将有序数组转换为二叉搜索树
40 0
|
2月前
【LeetCode 47】669.修剪二叉搜索树
【LeetCode 47】669.修剪二叉搜索树
10 0
|
2月前
【LeetCode 46】450.删除二叉搜索树的节点
【LeetCode 46】450.删除二叉搜索树的节点
19 0
|
2月前
【LeetCode 42】501.二叉搜索树中的众数
【LeetCode 42】501.二叉搜索树中的众数
10 0
|
2月前
【LeetCode 41】530.二叉搜索树的最小绝对差
【LeetCode 41】530.二叉搜索树的最小绝对差
11 0
|
3月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
4月前
|
Python
【Leetcode刷题Python】剑指 Offer 32 - III. 从上到下打印二叉树 III
本文介绍了两种Python实现方法,用于按照之字形顺序打印二叉树的层次遍历结果,实现了在奇数层正序、偶数层反序打印节点的功能。
59 6
|
4月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
121 2