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

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

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

java实现,写简单点

public class Solution {
    /**
     * 
     * @param root TreeNode类 the root of binary tree
     * @return int整型二维数组
     */

    private List<Integer> list = new ArrayList<>();
    public int[][] threeOrders (TreeNode root) {
        // write code here
        int [][] arr = new int[3][];

        for (int i = 0; i < 3; i++) {
            list.clear();
            orders(root,i + 1);
            arr[i] = new int[list.size()];
            for (int j = 0; j < list.size(); j++) {
                arr[i][j] = list.get(j);
            }
        }
        return arr;
    }

    public void orders(TreeNode root,int type) {
        if (root == null) return;
        if (type == 1) 
            list.add(root.val);
            orders(root.left,type);
        if (type == 2) 
            list.add(root.val);
            orders(root.right,type);
        if (type == 3)
            list.add(root.val);
    }
}
全部评论

相关推荐

牛客279957775号:铁暗恋
点赞 评论 收藏
分享
11-07 13:31
怀化学院 Java
勇敢牛牛不怕难:又疯一个
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务