当前位置:   article > 正文

从前序与中序遍历序列构造二叉树—leetcode105_前序遍历与中序遍历构造二叉树

前序遍历与中序遍历构造二叉树

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

注意:
你可以假设树中没有重复的元素。

例如,给出

前序遍历 preorder = [3,9,20,15,7]
中序遍历 inorder = [9,3,15,20,7]
返回如下的二叉树:

    3
   / \
  9  20
    /  \
   15   7

 

思路:现在前序遍历中找到第一个数,根据这个数去中序二叉树查找到相应位置,然后根据这个位置就可以得到当前节点的左子树的初始位置和终止位置,并且根据长度直到在前序列表中对应的左子树起始和终止位置,那么递归寻找左子树根节点即可,右子树同理。

  1. /**
  2. * Definition for a binary tree node.
  3. * struct TreeNode {
  4. * int val;
  5. * TreeNode *left;
  6. * TreeNode *right;
  7. * TreeNode(int x) : val(x), left(NULL), right(NULL) {}
  8. * };
  9. */
  10. class Solution {
  11. public:
  12. TreeNode* buildTree(vector<int>& preorder, vector<int>& inorder) {
  13. if(preorder.empty() || inorder.empty())
  14. return NULL;
  15. int pre_start = 0; int pre_end = preorder.size()-1;
  16. int in_start = 0; int in_end = inorder.size()-1;
  17. return core(preorder, inorder, pre_start, pre_end, in_start, in_end);
  18. }
  19. TreeNode* core(vector<int>& preorder, vector<int>& inorder, int pre_start, int pre_end, int in_start, int in_end){
  20. int rootval = preorder[pre_start];
  21. TreeNode* root = new TreeNode(rootval);
  22. if(pre_start == pre_end)
  23. {
  24. if((in_start == in_end) && (preorder[pre_start] == inorder[in_end]))
  25. return root;
  26. else
  27. return NULL;
  28. }
  29. int in_left_end = -1;
  30. for(int i=in_start;i<=in_end;++i){
  31. if(inorder[i]==rootval){
  32. in_left_end = i;
  33. }
  34. }
  35. if(in_left_end==-1)
  36. return NULL;
  37. if(in_left_end-in_start>0)
  38. root->left = core(preorder, inorder, pre_start+1, pre_start+in_left_end-in_start, in_start, in_left_end-1);
  39. if(pre_end-(pre_start+in_left_end-in_start)>0)
  40. root->right = core(preorder, inorder, pre_start+in_left_end-in_start+1, pre_end, in_left_end+1, in_end);
  41. return root;
  42. }
  43. };

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/754742
推荐阅读
相关标签
  

闽ICP备14008679号