105. 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.

方法一:迭代

 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.size()==0)
14             return NULL;
15         stack<TreeNode*>s;
16         TreeNode*root,*t;
17         int flag=0,i=0,j=0;
18         root=new TreeNode(preorder[0]);
19         t=root;
20         s.push(root);
21         i++;
22         while(i<preorder.size())
23         {
24             if(!s.empty()&&s.top()->val==inorder[j])
25             {
26                 t=s.top();
27                 s.pop();
28                 flag=1;
29                 j++;
30             }
31             else
32             {
33                 if(flag==0)
34                 {
35                     t->left=new TreeNode(preorder[i]);
36                     t=t->left;
37                     s.push(t);
38                     i++;
39                 }
40                 else
41                 {
42                     flag=0;
43                     t->right=new TreeNode(preorder[i]);
44                     t=t->right;
45                     s.push(t);
46                     i++;
47                 }
48             }
49         }
50            return root;
51         }
52 };

方法二:递归

 

转载于:https://www.cnblogs.com/wangzao2333/p/7646855.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值