摘要:
617. Merge Two Binary Trees(合并二叉树) 链接 https://leetcode cn.com/problems/merge two binary trees 题目 给定两个二叉树,想象当你将它们中的一个覆盖到另一个上时,两个二叉树的一些节点便会重叠。 你需要将他们合并为 阅读全文
摘要:
226. Invert Binary Tree(翻转二叉树) title: LeetCode 226. Invert Binary Tree date: 2022-04-09 10:36:00 tags: categories: LeetCode LeetCode 226. Invert Binar 阅读全文
摘要:
LeetCode 101. Symmetric Tree (对称二叉树) 题目 链接 https://leetcode-cn.com/problems/symmetric-tree 问题描述 给定一个二叉树,检查它是否是镜像对称的。 例如,二叉树 [1,2,2,3,4,4,3] 是对称的。 示例 输 阅读全文
摘要:
LeetCode 21. Merge Two Sorted Lists (合并两个有序链表) 题目 链接 https://leetcode-cn.com/problems/merge-two-sorted-lists/ 问题描述 将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个 阅读全文