leetcode-----103. 二叉树的锯齿形层次遍历

Posted 景云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-----103. 二叉树的锯齿形层次遍历相关的知识,希望对你有一定的参考价值。

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public List<List<Integer>> zigzagLevelOrder(TreeNode root) {
        List<List<Integer>> ans = new ArrayList<>();
        if (root == null) return ans;
        Queue<TreeNode> q = new LinkedList<>();
        q.add(root);
        int cnt = 0;

        while (!q.isEmpty()) {
            List<Integer> l = new ArrayList<>();
            int sz = q.size();
            for (int i = 0; i < sz; ++i) {
                TreeNode t = q.poll();
                if (cnt % 2 == 0) {
                    l.add(t.val);
                } else {
                    l.add(0, t.val);
                }
                if (t.left != null) q.add(t.left);
                if (t.right != null) q.add(t.right);
            }
            ans.add(l);
            cnt++;
        }
        return ans;
    }
}

以上是关于leetcode-----103. 二叉树的锯齿形层次遍历的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 103. 二叉树的锯齿形层次遍历

python-leetcode103-树的宽度遍历二叉树的锯齿形层次遍历

leetcode-----103. 二叉树的锯齿形层次遍历

LeetCode 103. 二叉树的锯齿形层次遍历(Binary Tree Zigzag Level Order Traversal)

leetcode103二叉树的锯齿形层序遍历

LeetCode 103. 二叉树的锯齿形层序遍历