输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历结果。如果是则返回 true,否则返回 false。假设输入的数组的任意两个数字都互不相同。
参考以下这颗二叉搜索树:
5
/ \
2 6
/
1 3
示例 1:
输入: [1,6,3,2,5]
输出: false
示例 2:
输入: [1,3,2,6,5]
输出: true
class Solution {
public boolean verifyPostorder(int[] postorder) {
if(postorder==null){
return true;
}
return verify(postorder,0,postorder.length-1);
}
public boolean verify(int[] postorder,int left,int right){
if(left>=right){
return true;
}
int root=postorder[right];
int i=0;
for( i=left;i<right;i++){
if(postorder[i]>root){
break;
}
}
int j=0;
for( j=i;j<right;j++){
if(postorder[j]<root){
return false;
}
}
return verify(postorder,left,i-1)&&verify(postorder,i,right-1);
}
}
版权声明:本文为weixin_39216383原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。