会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
meetviolet
CnBlogs
Home
New Post
Contact
Admin
Subscription
2022年8月11日
LCP 34. 二叉树染色
class Solution: def maxValue(self, root: TreeNode, k: int) -> int: def dfs(root): # 空节点价值全为0 res = [0]*(k+1) if not root: return res # 递归获取左右节点的状态 lef
Read More
posted @ 2022-08-11 14:05 meetviolet
Views(55)
Comments(0)
Diggs(0)
Edit
公告