摘要: 707. 设计链表 单链表 class Node: def __init__(self, val): self.val = val self.next = None class MyLinkedList: def __init__(self): self.head = Node(0) # 虚拟头部节 阅读全文
posted @ 2022-05-15 21:10 YTT77 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 104. 二叉树的最大深度 递归法 可以使用前序遍历(中左右),也可以使用后序遍历(左右中),使用前序求的就是深度,使用后序求的是高度。 而根节点的高度就是二叉树的最大深度 class Solution: def maxDepth(self, root: Optional[TreeNode]) -> 阅读全文
posted @ 2022-05-15 14:14 YTT77 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 强化学习优化的图神经网络 研究工作1: 研究工作2: 研究工作3: 研究工作4: 研究工作5: Towards a Multi-view Attentive Matching for Personalized Expert Finding 社区问答:为新问题推荐专家发现问题 给定一个目标问题,给其推 阅读全文
posted @ 2022-05-15 10:48 YTT77 阅读(106) 评论(0) 推荐(0) 编辑