标签:subject 否则 amp int sequence bsp style color 二叉搜索树
1 class Solution { 2 public: 3 bool judge(vector<int>& a,int l,int r) 4 { 5 if(l>=r) return true;//为什么是l>=r呢?比如 1435,没有右子树的话,最后 i=r > r-1 6 int temp=a[r]; 7 int i=r,j; 8 while(i>l&&a[i-1]>temp) i--; 9 for(j=i-1;j>=l;j--) 10 { 11 if(a[j]>temp) return false; 12 } 13 return judge(a,l,i-1)&&judge(a,i,r-1); 14 } 15 bool VerifySquenceOfBST(vector<int> sequence) { 16 if(sequence.size()==0) return false; 17 return judge(sequence,0,sequence.size()-1); 18 } 19 };
标签:subject 否则 amp int sequence bsp style color 二叉搜索树
原文地址:http://www.cnblogs.com/wsw-seu/p/7807902.html