刷题:Tree

102. 二叉树的层序遍历

public List<List<Integer>> levelOrder(TreeNode root) {
    List<List<Integer>> res = new ArrayList<>();

    Queue<TreeNode> queue = new ArrayDeque<>();
    if (root != null) {
        queue.add(root);
    }
    while (!queue.isEmpty()) {
        int n = queue.size();
        List<Integer> level = new ArrayList<>();
        for (int i = 0; i < n; i++) { 
            TreeNode node = queue.poll();
            level.add(node.val);
            if (node.left != null) {
                queue.add(node.left);
            }
            if (node.right != null) {
                queue.add(node.right);
            }
        }
        res.add(level);
    }
    return res;
}

107. 二叉树的层序遍历 II

用List<List>> 先存储每一层,然后反转

94. 二叉树的中序遍历
145. 二叉树的后序遍历
剑指 Offer 33. 二叉搜索树的后序遍历序列
103. 二叉树的锯齿形层序遍历
105. 从前序与中序遍历序列构造二叉树

    class Solution {
        public TreeNode buildTree(int[] preorder, int[] inorder) {
            if (preorder == null || inorder == null) return null;
            TreeNode root = buildTree(preorder, 0, preorder.length - 1, inorder, 0,
                inorder.length - 1);
            return root;
        }

        public TreeNode buildTree(int[] preorder, int preStart, int preEnd, int[] inorder, int inStart, int inEnd) {
            if (preStart > preEnd || inStart > inEnd) return null;

            int rootVal = preorder[preStart];
            TreeNode root = new TreeNode(rootVal);
            int rootIndex = inStart;
            for (int i = inStart; i <= inEnd; i++) {
                if (inorder[i] == rootVal) {
                    rootIndex = i;
                    break;
                }
            }
            root.left = buildTree(preorder, preStart + 1, rootIndex + preStart - inStart, inorder, inStart, rootIndex - 1);
            root.right = buildTree(preorder, rootIndex + preStart - inStart + 1, preEnd, inorder, rootIndex + 1, inEnd);
            return root;
        }
    }

106. 从中序与后序遍历序列构造二叉树

    class Solution {
        public TreeNode buildTree(int[] inorder, int[] postorder) {
            if (inorder == null || postorder == null) return null;
            return buildTree(inorder, 0, inorder.length - 1, postorder, 0, postorder.length - 1);
        }

        public TreeNode buildTree(int[] inorder, int inStart, int inEnd, int[] postorder, int postStart, int postEnd) {
            if (inStart > inEnd || postStart > postEnd) return null;

            int rootVal = postorder[postEnd];
            int index = postEnd;
            for (int i = inStart; i <= inEnd; i++) {
                if (inorder[i] == rootVal) {
                    index = i;
                    break;
                }
            }

            TreeNode root = new TreeNode(rootVal);
            root.left = buildTree(inorder, inStart, index - 1, postorder, postStart, postStart + index - inStart - 1);
            root.right = buildTree(inorder, index + 1, inEnd ,postorder, postStart + index - inStart, postEnd - 1);
            return root;
        }
    }

199. 二叉树的右视图

class Solution {
    private List<Integer> res = new ArrayList<>();
    public List<Integer> rightSideView(TreeNode root) {
        dfs(root, 0);
        return res;
    }

    private void dfs(TreeNode root, int depth) {
        if (root == null) {
            return;
        }
        
        if (depth == res.size()) {
            res.add(root.val);
        }
        ++depth;
        dfs(root.right, depth);
        dfs(root.left, depth);
    }
}

226. 翻转二叉树

    // 递归算法,迭代用广度搜索算法即可
    class Solution {
        public TreeNode invertTree(TreeNode root) {
            if (root == null) {
                return null;
            }
            TreeNode left = root.left;
            root.left = root.right;
            root.right = left;

            invertTree(root.left);
            invertTree(root.right);
            return root;
        }
    }

104. 二叉树的最大深度

    class Solution {
        public int maxDepth(TreeNode root) {
            if (root == null) {
                return 0;
            }
            return Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
        }
    }

剑指 Offer 26. 树的子结构

    class Solution {
        public boolean isSubStructure(TreeNode A, TreeNode B) {
            return (A != null && B != null) && (isValid(A, B) || isSubStructure(A.left, B) || isSubStructure(A.right, B));
            
        }

        private boolean isValid(TreeNode A, TreeNode B) {
            if (B == null) return true;
            if (A == null) return false;
            return A.val == B.val && isValid(A.left, B.left) && isValid(A.right, B.right);
        }
    }

101. 对称二叉树

// 转化为求两棵树的镜像对称问题
class Solution {
    public boolean isSymmetric(TreeNode root) {
        return check(root, root);
    }
    private boolean check(TreeNode p, TreeNode q) {
        if (p == null && q == null) return true;
        if (p == null || q == null) return false;
        return p.val == q.val && check(p.left, q.right) && check(p.right, q.left);
    }
}

96. 不同的二叉搜索树


98. 验证二叉搜索树

class Solution {
    public boolean isValidBST(TreeNode root) {
        return isValid(root, Long.MAX_VALUE, Long.MIN_VALUE);
    }
    private boolean isValid(TreeNode p, long upper, long lower) {
        if (p == null) return true;
        if (p.val <= lower || p.val >= upper) return false;
        return isValid(p.left, p.val, lower) && isValid(p.right, upper, p.val);
    }
}

543. 二叉树的直径

class Solution {
    private int ans;
    public int diameterOfBinaryTree(TreeNode root) {
        depth(root);
        return ans - 1;
    }

    private int depth(TreeNode p) {
        if (p == null) {
            return 0;
        }
        int left = depth(p.left);
        int right = depth(p.right);
        ans = Math.max(ans, left+right+1);
        return Math.max(left, right) + 1;
    }
}

341. 扁平化嵌套列表迭代器
剑指 Offer 37. 序列化二叉树
236. 二叉树的最近公共祖先
剑指 Offer 36. 二叉搜索树与双向链表
剑指 Offer 32 - I. 从上到下打印二叉树
剑指 Offer 34. 二叉树中和为某一值的路径

337. 打家劫舍 III
257. 二叉树的所有路径

class Solution {
    List<String> res = new ArrayList<>();
    public List<String> binaryTreePaths(TreeNode root) {
        dfs(root, "");
        return res;
    }
    private void dfs(TreeNode p, String cur) {
        if (p.left == null && p.right == null) {
            cur += p.val;
            res.add(cur);
            return;
        }
        if (p.left == null) {
            cur += p.val + "->";
            dfs(p.right, cur);
        } else if (p.right == null) {
            cur += p.val + "->";
            dfs(p.left, cur);
        } else {
            cur += p.val + "->";
            dfs(p.left, cur);
            dfs(p.right, cur);
        }
    }
}

129. 求根节点到叶节点数字之和

    class Solution {
        private int ans;
        public int sumNumbers(TreeNode root) {
            dfs(root, 0);
            return ans;
        }

        private void dfs(TreeNode p, int curSum) {
            curSum = curSum * 10 + p.val;
            if (p.left == null && p.right == null) {
                ans += curSum;
            } else if (p.left == null) {
                dfs(p.right, curSum);
            } else if (p.right == null) {
                dfs(p.left, curSum);
            } else {
                dfs(p.left, curSum);
                dfs(p.right, curSum);
            }
        }
    }

100. 相同的树

    class Solution {
        public boolean isSameTree(TreeNode p, TreeNode q) {
            if (p == null && q == null) return true;
            if (p == null || q == null) return false;
            return p.val == q.val && isSameTree(p.left, q.left) && isSameTree(p.right, q.right);
        }
    }

617. 合并二叉树

    class Solution {
        public TreeNode mergeTrees(TreeNode root1, TreeNode root2) {
            if (root1 == null) {
                return root2;
            }
            if (root2 == null) {
                return root1;
            }
            TreeNode root = new TreeNode(root1.val + root2.val);
            root.left = mergeTrees(root1.left, root2.left);
            root.right = mergeTrees(root1.right, root2.right);
            return root;
        }
    }

112. 路径总和

    class Solution {
        public boolean hasPathSum(TreeNode root, int targetSum) {
            if (root == null) return false;
            if (root.left == null && root.right == null) return root.val == targetSum;
            targetSum = targetSum - root.val;
            if (root.left == null) {
                return hasPathSum(root.right, targetSum);
            }
            if (root.right == null) {
                return hasPathSum(root.left, targetSum);
            }
            return hasPathSum(root.left, targetSum) || hasPathSum(root.right, targetSum);
        }
    }

113. 路径总和 II

    class Solution {
        private List<List<Integer>> res = new ArrayList<>();

        public List<List<Integer>> pathSum(TreeNode root, int targetSum) {
            if (root == null) return res;
            dfs(root, new ArrayList<>(), targetSum);
            return res;
        }

        private void dfs(TreeNode p, List<Integer> path, int targetSum) {
            path.add(p.val);
            if (p.left == null && p.right == null) {
                if (p.val == targetSum)
                res.add(new ArrayList<>(path));
                return;
            }
            targetSum = targetSum - p.val;

            if (p.left == null) {
                dfs(p.right, path, targetSum);
                return;
            }
            if (p.right == null) {
                dfs(p.left, path, targetSum);
                return;
            }
            dfs(p.left, new ArrayList<>(path), targetSum);
            dfs(p.right, new ArrayList<>(path), targetSum);
        }
    }

437. 路径总和 III

剑指 Offer 32 - II. 从上到下打印二叉树 II

897. 递增顺序搜索树

剑指 Offer 32 - III. 从上到下打印二叉树 III

110. 平衡二叉树
剑指 Offer 68 - II. 二叉树的最近公共祖先
662. 二叉树最大宽度
872. 叶子相似的树
109. 有序链表转换二叉搜索树
95. 不同的二叉搜索树 II

331. 验证二叉树的前序序列化

99. 恢复二叉搜索树

297. 二叉树的序列化与反序列化
剑指 Offer 55 - II. 平衡二叉树
108. 将有序数组转换为二叉搜索树
面试题 04.02. 最小高度树
173. 二叉搜索树迭代器
124. 二叉树中的最大路径和

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容