二叉搜索树的后序遍历序列
Posted RenewDo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二叉搜索树的后序遍历序列相关的知识,希望对你有一定的参考价值。
题目描述
输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果。如果是则输出Yes,否则输出No。假设输入的数组的任意两个数字都互不相同。
class Solution { public: bool isBST(vector<int> &s,int a,int b) { if(b<a) return false; if(b==a) return true; int root=s[b]; int i,j; for(i=a;i<=b-1;i++) if(s[i]>root)break; bool left=true; if(i>a) left=isBST(s,a,i-1); for(j=i;j<=b-1;j++) if(s[j]<root)return false; bool right=true; if(i<b-1) return isBST(s,i,b-1); return left&&right; } bool VerifySquenceOfBST(vector<int> sequence) { if(sequence.size()<0||sequence.size()==0) return false; if(sequence.size()==1) return true; int len=sequence.size(); return isBST(sequence,0,len-1); } };
以上是关于二叉搜索树的后序遍历序列的主要内容,如果未能解决你的问题,请参考以下文章