GodcccL11
GodcccL11
全部文章
题解
未归档(1)
归档
标签
去牛客网
登录
/
注册
GodcccL11的博客
全部文章
/ 题解
(共5篇)
最小覆盖子串(滑动窗口+哈希)
# 思路: ### 1右移右指针 直至窗口全覆盖子串 ### 2右移左指针 缩小窗口,并不断地检查窗口是否覆盖子串, ### 3如果是的话,就更新起始位置strStart和窗口长度 ### 4如果不是的话,就右移右指针right,重复1操作 ### 最后根据起始位置strStart和窗口长度wind...
2021-08-09
0
497
最大数cmp_to_key()
from functools import cmp_to_keyclass Solution: def solve(self,nums): strs=map(str,nums) # 将整型的数字转化为字符串 def cmp1(x, y): # x=20,...
2021-08-08
0
732
Python 链表反转 1、常规 2、递归
# 解法一:常规修改指针 class Solution: def ReverseList(self, pHead): # write code here if not pHead: return None pre=Non...
2021-03-15
1
553
Python二分查找
class Solution: def upper_bound_(self , num , value , arr ): if arr[num - 1] < value: return num + 1 left=0 ...
2020-12-16
4
888
python实现二叉树先序中序后续遍历
class Solution: def threeOrders(self , root): # write code here self.results=[[],[],[]] self.preorder(root) self.i...
2020-12-16
2
754