100题(6)

 
题目:输入一个整数数组,判断该数组是不是某二元查找树的后序遍历的结果。如果是返回true,否则返回false。
例如输入5、7、6、9、11、10、8,由于这一整数序列是如下树的后序遍历结果:
      8

     / \

   6   10

  / \   / \

 5 7  9 11
因此返回true。

 

如果输入7、4、6、5,没有哪棵树的后序遍历的结果是这个序列,因此返回false。

 

 

这题其实很简单,我们知道二元查找树的中序遍历是有序的。给定后续遍历结果,排序后可得到终须遍历结果。有了中序遍历结果和后续遍历结果,我们就可以确定一颗二叉树。其实这题目更加简单,只需要我们判定就可以了,一个二叉查找树,左边的节点一定会小于右边的节点。而后续遍历的最后一个节点就应该是根结点,因此这题可以很容易地用递归的思想解决。

View Code
#include <iostream>

using  namespace std;

bool IsSearchBinaryTree( int a[],  int n)
{
     if (n <  3)
    {
         return  true;
    }
     if (n ==  3)
    {
         if (a[ 0] < a[ 2] && a[ 1] > a[ 2])
             return  true;
         else
             return  false;
    }
     int i;
     for (i =  0; i < n- 1; i++)
    {
         if (a[i] < a[n- 1])
             continue;
         else
             break;
    }
     return IsSearchBinaryTree(a, i) && IsSearchBinaryTree(a + i, n - i -  1);
}

int main()
{
     int a[] = { 76911108};
    cout<<IsSearchBinaryTree(a,  7)<<endl;
    system( " pause ");
     return  0;
}
解法2:+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
分析:这是一道trilogy的笔试题,主要考查对二元查找树的理解。 
在后续遍历得到的序列中,最后一个元素为树的根结点。从头开始扫描这个序列,比根结点小的元素都应该位于序列的左半部分;从第一个大于跟结点开始到跟结点前面的一个元素为止,所有元素都应该大于跟结点,因为这部分元素对应的是树的右子树。根据这样的划分,把序列划分为左右两部分,我们递归地确认序列的左、右两部分是不是都是二元查找树。 
参考代码: 
C++代码
  1. using namespace std;   
  2. ///   
  3. // Verify whether a squence of integers are the post order traversal   
  4. // of a binary search tree (BST)   
  5. // Input: squence - the squence of integers   
  6. //          length    - the length of squence   
  7. // Return: return ture if the squence is traversal result of a BST,   
  8. //           otherwise, return false   
  9. ///   
  10. bool verifySquenceOfBST(int squence[], int length)   
  11. {   
  12.       if(squence == NULL || length <= 0)   
  13.             return false;   
  14.       // root of a BST is at the end of post order traversal squence   
  15.       int root = squence[length - 1];   
  16.       // the nodes in left sub-tree are less than the root   
  17.       int i = 0;   
  18.       for(; i < length - 1; ++ i)   
  19.         {   
  20.             if(squence > root)   
  21.                   break;   
  22.         }   
  23.   
  24.       // the nodes in the right sub-tree are greater than the root   
  25.       int j = i;   
  26.       for(; j < length - 1; ++ j)   
  27.         {   
  28.             if(squence[j] < root)   
  29.                   return false;   
  30.         }   
  31.   
  32.       // verify whether the left sub-tree is a BST   
  33.       bool left = true;   
  34.       if(i > 0)   
  35.               left = verifySquenceOfBST(squence, i);   
  36.   
  37.       // verify whether the right sub-tree is a BST   
  38.       bool right = true;   
  39.       if(i < length - 1)   
  40.               right = verifySquenceOfBST(squence + i, length - i - 1);   
  41.   
  42.       return (left && right);  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值