链接: https://leetcode-cn.com/problems/binary-tree-inorder-traversal/description/
题意
给定一个二叉树的根节点 root ,返回它的 中序 遍历。
但问耕耘,莫问收获
链接: https://leetcode-cn.com/problems/binary-tree-inorder-traversal/description/
给定一个二叉树的根节点 root ,返回它的 中序 遍历。
链接: https://leetcode-cn.com/problems/merge-two-binary-trees
给你两棵二叉树 root 和 subRoot 。检验 root 中是否包含和 subRoot 具有相同结构和节点值的子树
链接: https://leetcode-cn.com/problems/merge-two-binary-trees
给定两个二叉树,想象当你将它们中的一个覆盖到另一个上时,两个二叉树的一些节点便会重叠。
你需要将他们合并为一个新的二叉树。合并的规则是如果两个节点重叠,那么将他们的值相加作为节点合并后的新值,否则不为 NULL 的节点将直接作为新二叉树的节点。
链接: https://leetcode-cn.com/problems/implement-trie-prefix-tree
尝试建立一个字典树,支持快速插入单词、查找单词、查找单词前缀的功能。
链接: https://leetcode-cn.com/problems/trim-a-binary-search-tree
给定一个二叉查找树和两个整数 L 和 R,且 L < R,试修剪此二叉查找树,使得修剪后所有节点的值都在 [L, R] 的范围内
https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/
给定一棵树的前序遍历 preorder 与中序遍历 inorder。请构造二叉树并返回其根节点。
链接: https://leetcode-cn.com/problems/delete-nodes-and-return-forest
给出二叉树的根节点 root,树上每个节点都有一个不同的值。
如果节点值在 to_delete 中出现,我们就把该节点从树上删去,最后得到一个森林(一些不相交的树构成的集合)。
链接: https://leetcode-cn.com/problems/path-sum-iii/
给定一个二叉树的根节点 root ,和一个整数 targetSum ,求该二叉树里节点值之和等于 targetSum 的 路径 的数目。