lintcode 66.67.68 二叉树遍历(前序中序后序)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lintcode 66.67.68 二叉树遍历(前序中序后序)相关的知识,希望对你有一定的参考价值。
AC代码:
/** * Definition of TreeNode: * public class TreeNode { * public int val; * public TreeNode left, right; * public TreeNode(int val) { * this.val = val; * this.left = this.right = null; * } * } */ public class Solution { /** * @param root: The root of binary tree. * @return: Preorder in ArrayList which contains node values. */ public ArrayList<Integer> preorderTraversal(TreeNode root) { ArrayList<Integer> res=new ArrayList<>(); if(root==null) return res; res.add(root.val); res.addAll(preorderTraversal(root.left)); res.addAll(preorderTraversal(root.right)); return res; } }
题目来源: http://www.lintcode.com/zh-cn/problem/binary-tree-preorder-traversal/
以上是关于lintcode 66.67.68 二叉树遍历(前序中序后序)的主要内容,如果未能解决你的问题,请参考以下文章