【数据结构】中序遍历与后序遍历构造二叉树

根据一棵树的中序遍历与后序遍历构造二叉树。

具体代码如下:


  struct TreeNode {
      int val;
      struct TreeNode *left;
      struct TreeNode *right;
  };

struct TreeNode* _buildTree(int* postorder,int* pindex,int* inorder,int begin,int end)
{
    if(begin>end)
    {
        return NULL;
    }
    struct TreeNode* root=(struct TreeNode*)malloc(sizeof(struct TreeNode));
    root->val=postorder[*pindex];
    int rootindex=begin;
    for(rootindex=begin;rootindex<=end;rootindex++)
    {
        if(inorder[rootindex]==root->val)
            break;
    }
     //构建右子树  
    (*pindex)--;
       root->right=_buildTree(postorder,pindex,inorder,rootindex+1,end);
    //构建左子树
       root->left=_buildTree(postorder,pindex,inorder,begin,rootindex-1);
      
    return root;
}

struct TreeNode* buildTree(int* inorder, int inorderSize, int* postorder, int postorderSize) {
    int index=postorderSize-1;
    return _buildTree(postorder,&index,inorder,0,inorderSize-1);
}

猜你喜欢

转载自blog.csdn.net/qq_42270373/article/details/83795839
今日推荐