题解 | #二叉树的中序遍历#
二叉树的中序遍历
http://www.nowcoder.com/practice/0bf071c135e64ee2a027783b80bf781d
递归求解:
用一个ArrayList<>集合来接收元素
然后再用arr数组接收即可
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param root TreeNode类 * @return int整型一维数组 */ public int[] inorderTraversal (TreeNode root) { // write code here ArrayList<Integer> list = new ArrayList<>(); inorder(root,list); int[] arr = new int[list.size()]; for (int i = 0; i < arr.length; i++){ arr[i] = list.get(i); } return arr; } public void inorder(TreeNode root,ArrayList<Integer> list){ if (root == null){ return; } inorder(root.left,list); list.add(root.val); inorder(root.right,list); } }