题解 | #实现二叉树先序,中序和后序遍历#

实现二叉树先序,中序和后序遍历

http://www.nowcoder.com/practice/a9fec6c46a684ad5a3abd4e365a9d362

import java.util.*;

/*
 * public class TreeNode {
 *   int val = 0;
 *   TreeNode left = null;
 *   TreeNode right = null;
 * }
 */

public class Solution {
    /**
     * 
     * @param root TreeNode类 the root of binary tree
     * @return int整型二维数组
     */
    public int[][] threeOrders (TreeNode root) {
        // write code here
        int[][] arr = new int[3][];
        List preList = new ArrayList();
        List inList = new ArrayList();
        List postList = new ArrayList();
        myOrder(root, preList, inList, postList);
        arr[0] = listToArr(preList);
        arr[1] = listToArr(inList);
        arr[2] = listToArr(postList);
        return arr;
    }

   private static void myOrder(TreeNode root, List<Integer> listPre, List<Integer> listIn, List<Integer> listPost) {
        if(root != null){
            listPre.add(root.val);
            myOrder(root.left, listPre, listIn, listPost);
            listIn.add(root.val);
            myOrder(root.right, listPre, listIn, listPost);
            listPost.add(root.val);
        }
    }

   private static int[] listToArr(List<Integer> list){
        int[] arr = new int[list.size()];
        for(int i = 0; i < list.size(); i++){
            arr[i] = list.get(i);
        }
        return arr;
    }

//     private static void preOrder(TreeNode root, List<Integer> list){
//         if(root != null){
//             list.add(root.val);
//             preOrder(root.left, list);
//             preOrder(root.right, list);
//         }
//     }
//     private static void inOrder(TreeNode root, List<Integer> list){
//         if(root != null){
//             inOrder(root.left, list);
//             list.add(root.val);
//             inOrder(root.right, list);
//         }
//     }
//     private static void postOrder(TreeNode root, List<Integer> list){
//         if(root != null){
//             postOrder(root.left, list);
//             postOrder(root.right, list);
//             list.add(root.val);
//         }
//     }

}
全部评论

相关推荐

我见java多妩媚:大外包
点赞 评论 收藏
分享
10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务