码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode:103Binary Tree Zigzag Level Order Traversal

时间:2016-03-13 22:28:37      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:

真是不容易啊,做这道题的时候脑子一团乱,感觉还是得劳逸结合啊。这道题的思想不难,就是宽搜BFS。通过设置一个flag来判断是否需要逆序输出。

我的做法虽然AC,但是觉得代码还是不好,空间占用较多。

 /**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public List<List<Integer>> zigzagLevelOrder(TreeNode root) {
         List<List<Integer>> result = new ArrayList< >();
        Queue<TreeNode> queue = new LinkedList<>();

        if(root == null)
        {
            return result;
        }
        queue.add(root);
        boolean flag = true;
        while (!queue.isEmpty())
        {
            int i=0;
            List<Integer> tempList = new ArrayList<>();
            int count = queue.size();
            while (i<count) {
                TreeNode Node = queue.poll();
                tempList.add(Node.val);
                    if (Node.left != null) {
                        queue.add(Node.left);
                    }
                    if (Node.right != null) {
                        queue.add(Node.right);
                    }
                i++;
            }
            if(flag==false)
            {
                Stack<Integer> tempstack = new Stack<>();
                for (Integer tem: tempList
                     ) {
                    tempstack.push(tem);
                }
                List<Integer> list2 = new ArrayList<>();
                while (!tempstack.isEmpty())
                {
                    list2.add(tempstack.pop());
                }
                result.add(list2);

            }
            else
            {
                result.add(tempList);
            }
            flag=!flag;
        }
       return result;
    }
}

 

LeetCode:103Binary Tree Zigzag Level Order Traversal

标签:

原文地址:http://www.cnblogs.com/ren-jie/p/5273867.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!