摘要:
寻找重复的子树 - 力扣(LeetCode)leetcode-cn.com/problems/find-duplicate-subtrees/description/ 题目描述: 给定一棵二叉树,返回所有重复的子树。对于同一类的重复子树,你只需要返回其中任意一棵的根结点即可。 两棵树重复是指它们具 阅读全文
摘要:
* 返回与给定的前序和后序遍历匹配的任何二叉树。 * * pre 和 post 遍历中的值是不同的正整数。 * 示例: * * 输入:pre = [1,2,4,5,3,6,7], post = [4,5,2,6,7,3,1] * 输出:[1,2,3,4,5,6,7] * 提示: * * * 1 <= 阅读全文
摘要:
输入:n——点的个数,a:double的点的角度。 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <iostream> 4 #include <vector> 5 #include <array> 6 #include <list> 7 阅读全文
摘要:
* [543] 二叉树的直径 * * https://leetcode-cn.com/problems/diameter-of-binary-tree/description/ * * algorithms * Easy (55.94%) * Likes: 902 * Dislikes: 0 * T 阅读全文