云林s
云林s
全部文章
分类
归档
标签
去牛客网
登录
/
注册
云林s的博客
全部文章
(共94篇)
题解 | #设计LFU缓存结构#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * lfu design *...
2024-02-01
0
206
题解 | #设计LRU缓存结构#
using System; using System.Collections.Generic; public class Solution { Dictionary<int, Node> cache = new Dictionary<int, Node>(); ...
2024-01-31
0
164
题解 | #顺时针旋转矩阵#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ma...
2024-01-30
0
163
题解 | #螺旋矩阵#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ma...
2024-01-30
0
183
题解 | #旋转数组#
using System; using System.Collections.Generic; using System.Linq; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * *...
2024-01-30
0
181
题解 | #主持人调度(二)#
using System; using System.Collections.Generic; using System.Linq; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * *...
2024-01-30
0
184
题解 | #分糖果问题#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * pick candy *...
2024-01-29
0
178
题解 | #接雨水问题#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * max water * ...
2024-01-29
0
180
题解 | #盛水最多的容器#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param he...
2024-01-29
0
209
题解 | #最长无重复子数组#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ar...
2024-01-29
0
177
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页