swaaaay
swaaaay
全部文章
分类
未归档(36)
题解(78)
归档
标签
去牛客网
登录
/
注册
swaaaay的博客
TA的专栏
112篇文章
3人订阅
题解-数据结构与算法
47篇文章
677人学习
题解-SQL
29篇文章
478人学习
每天一道面试题
36篇文章
1378人学习
全部文章
(共4篇)
题解 | #找出单向链表中的一个节点,该节点到尾指针的距离为K#
来自专栏
列表转链表,再双指针 class node: def __init__(self, data): self.val = data self.next = None class Solution: def __init__(self):...
Python3
链表
2021-11-23
0
530
题解 | #删除链表中重复的结点#
来自专栏
字典计数,数组转链表的解法 class Solution: def deleteDuplication(self , pHead: ListNode) -> ListNode: # write code here if not pHead: retur...
Python3
数组
链表
2021-11-23
0
374
题解 | #两个链表的第一个公共结点#
来自专栏
class Solution: def FindFirstCommonNode(self , pHead1 , pHead2 ): # write code here mark1,mark2=pHead1,pHead2 while mark1!...
Python3
链表
2021-11-12
0
332
题解 | #删除链表的节点#
来自专栏
class Solution: def deleteNode(self , head: ListNode, val: int) -> ListNode: # write code here # 极端情况 if not h...
Python3
链表
2021-11-12
0
400