给定一棵树的中序遍历与后序遍历,依据此构造二叉树。
注意:
你可以假设树中没有重复的元素。
例如,给出
中序遍历 = [9,3,15,20,7]
后序遍历 = [9,15,7,20,3]
返回如下的二叉树:
    3
   / \
  9  20
    /  \
   15   7
详见:https://leetcode.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/description/

Java实现:

/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public TreeNode buildTree(int[] inorder, int[] postorder) {
if(inorder==null||inorder.length==0||postorder==null||postorder.length==0||inorder.length!=postorder.length){
return null;
}
return buildTree(inorder,0,inorder.length-1,postorder,0,postorder.length-1);
}
private TreeNode buildTree(int[] inorder,int startIn,int endIn,int[] postorder,int startPost,int endPost){
if(startIn>endIn||startPost>endPost){
return null;
}
TreeNode root=new TreeNode(postorder[endPost]);
for(int i=startIn;i<=endIn;++i){
if(inorder[i]==postorder[endPost]){
root.left=buildTree(inorder,startIn,i-1,postorder,startPost,startPost+i-startIn-1);
root.right=buildTree(inorder,i+1,endIn,postorder,startPost+i-startIn,endPost-1);
}
}
return root;
}
}

最新文章

  1. oracle新建登录用户sql语句
  2. Oracle11g中数据的倒库和入库操作以及高版本数据导入低版本数据可能引发的问题
  3. JXL操作Excel
  4. pip自动生成requirements.txt依赖关系清单
  5. CSS 去除列表项li前面的小圆点
  6. XML Schema使用技巧——unique
  7. linux服务器命令
  8. office2010怎么激活
  9. Qt信号和槽的个人总结
  10. symfony2 登录验证(转自http://www.newlifeclan.com/symfony/archives/300)
  11. C++ cout 输出小数点后指定位数
  12. jdbc问题:Access denied for user &#39;&#39;@&#39;localhost&#39;&#39;是因为没输入账户和密码
  13. Python中元类
  14. spring中ApplicationContextAware接口描述
  15. 使用jquery.validation+jquery.poshytip做表单验证--未完待续
  16. oauth 2.0转
  17. Cookie 基本操作
  18. nginx location URI匹配规则
  19. 更新Python以及随后的nose,easy_install,pip,numpy,scipy和theano
  20. 4 MySQL--表(增删改查)

热门文章

  1. Android:SQLiteOpenHelper类(SQLlite数据库操作)详细解析
  2. html5--3.16 button元素
  3. hdu-5724 Chess(组合游戏)
  4. heartbeat3.x部署安装
  5. [转载]Doxygen C++ 注释风格
  6. A - Combination Lock
  7. 招聘.Net中高级软件研发工程师
  8. 1.5 sqoop安装及基本使用
  9. sql语句之数据类型
  10. 技术胖Flutter第三季-18布局CardWidget 卡片布局组件