Detachment11
Detachment11
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Detachment11的博客
全部文章
(共55篇)
题解 | #接雨水问题#
package main /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * max water * @param arr int整型一维数组 the array * @return long长整型 */ func maxWater( arr [...
2023-11-19
0
273
题解 | #盛水最多的容器#
package main /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param height int整型一维数组 * @return int整型 */ func maxArea( height []int ) int { ...
2023-11-19
0
216
题解 | #设计LFU缓存结构#
package main import ( "time" "container/heap" ) /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * lfu design * @param operato...
2023-11-19
0
237
题解 | #设计LRU缓存结构#
package main import ( "container/list" ) type Solution struct { // write code here maxCacheSize int nBytes int m ...
2023-11-19
0
243
题解 | #二叉树的深度#(dfs 递归处理)
package main import . "nc_tools" /* * type TreeNode struct { * Val int * Left *TreeNode * Right *TreeNode * } */ /** * 代码中的类名、...
2023-09-01
0
262
题解 | #二叉树的深度#(非递归层序遍历解决)
package main import . "nc_tools" /* * type TreeNode struct { * Val int * Left *TreeNode * Right *TreeNode * } */ /** * 代码中的类名、...
2023-09-01
0
306
题解 | #丑数#
package main import ( "container/heap" ) /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param index int整型 * @return int整型 */ ...
2023-08-18
1
390
题解 | #丑数#
思路使用数组来存储丑数,第一个丑数为 1,后面的丑数都是在 1 基础上*2,*3,*5 得到的,下一个丑数一定是 1 分别乘 2、乘 3、乘 5 后得到的最小值;首先我们对通过*2、*3、*5 得到的丑数进行分类,使用 r2、r3、r5 来记录它们对应丑数的下标,初始时肯定都指向第一个丑数 1,所以...
2023-08-18
0
318
题解 | #返回每个订单号各有多少行数#
select order_num, COUNT(order_num) as order_lines from OrderItems group by order_num order by order_lines;
2023-08-15
0
260
题解
select order_num, order_date from Orders where order_date >= '2020-01-01 00:00:00' AND order_date <= '2020-01-31 23:59:59' order by order_dat...
2023-08-15
0
245
首页
上一页
1
2
3
4
5
6
下一页
末页