直接广度遍历,使用LinkedList的头插法和尾插法,处理不同层

按之字形顺序打印二叉树

http://www.nowcoder.com/questionTerminal/91b69814117f4e8097390d107d2efbe0

 public ArrayList<ArrayList<Integer>> Print(TreeNode pRoot) {
        ArrayList<ArrayList<Integer>> list = new ArrayList<>();
        if (pRoot==null)
            return list;

        LinkedList<TreeNode> queue = new LinkedList<>();
        queue.add(pRoot);
        int flag=0;
        while (!queue.isEmpty()){
            ArrayList<Integer> path = new ArrayList<>();
            //某层的节点个数
            int size = queue.size();
            for (int i=0;i<size;i++){
                TreeNode node = queue.removeFirst();
                if (flag%2==0)
                    path.add(path.size(),node.val);
                else
                    path.add(0,node.val);
                if (node.left!=null)
                    queue.add(node.left);
                if (node.right!=null)
                    queue.add(node.right);
            }
            flag++;
            list.add(path);
        }
        return list;
    }
全部评论

相关推荐

头像
10-15 22:27
已编辑
门头沟学院 C++
罗格镇的小镇做题家:我投了hr打电话来说学历太低了不符合要求,建议投荣耀,结果荣耀也投了一定水花没有,非本211硕
投递华为等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务