会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Chorn
博客园
首页
新随笔
联系
订阅
管理
2025年2月12日
递归问题
摘要: 前序遍历: 中->左->右 def trav(root): if not root: return self.result.append(root.val) trav(root.left) trav(root.right) 后序遍历: 左->右->中 def postorderTraversal(s
阅读全文
posted @ 2025-02-12 19:50 崔horin
阅读(8)
评论(0)
推荐(0)
2025年2月11日
回溯问题
摘要: class Solution(object): def combine(self, n, k): def backtrack(startindex): for i in range(startindex,n+2): print(path) if len(path)==k: result.append
阅读全文
posted @ 2025-02-11 20:32 崔horin
阅读(13)
评论(0)
推荐(0)
公告