leetcode -day23 Construct Binary Tree from Inorder and Postorder Traversal Construct Binary Tree f
生活随笔
收集整理的這篇文章主要介紹了
leetcode -day23 Construct Binary Tree from Inorder and Postorder Traversal Construct Binary Tree f
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1、
Construct Binary Tree from Inorder and Postorder Traversal
Given inorder and postorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
代碼:
class Solution { public:TreeNode *buildTree(vector<int> &inorder, vector<int> &postorder) {TreeNode* root = NULL;int len1 = inorder.size();int len2 = postorder.size();if(len1<1 || len2<1 || len1!=len2){return root;}return buildTreeCore(inorder,0,len1-1,postorder,0,len2-1);}TreeNode* buildTreeCore(vector<int>&inorder, int startIndex1, int endIndex1, vector<int>&postorder, int startIndex2, int endIndex2){if(endIndex1 < startIndex1 ){return NULL;}TreeNode* root = new TreeNode(postorder[endIndex2]);int index = 0;for(int i=startIndex1; i<=endIndex1; ++i){if(inorder[i] == postorder[endIndex2]){index = i;break;}}int leftLen = index-startIndex1;TreeNode* leftNode = NULL;TreeNode* rightNode = NULL;leftNode = buildTreeCore(inorder,startIndex1,index-1,postorder,startIndex2,startIndex2+leftLen-1);rightNode = buildTreeCore(inorder,index+1,endIndex1,postorder,startIndex2+leftLen,endIndex2-1);root->left = leftNode;root->right = rightNode;return root;} };2、Construct Binary Tree from Preorder and Inorder Traversal?
Given preorder and inorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
總結(jié)
以上是生活随笔為你收集整理的leetcode -day23 Construct Binary Tree from Inorder and Postorder Traversal Construct Binary Tree f的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: leetcode -day19 Conv
- 下一篇: gbdt介绍