云林s
云林s
全部文章
分类
归档
标签
去牛客网
登录
/
注册
云林s的博客
全部文章
(共94篇)
题解 | #寻找第K大#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a ...
2023-10-05
0
192
题解 | #寻找第K大#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a ...
2023-10-05
0
213
题解 | #滑动窗口的最大值#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num...
2023-10-02
0
242
题解 | #有效括号序列#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s ...
2023-10-01
0
214
题解 | #包含min函数的栈#
using System.Collections.Generic; class Solution { Stack<int> sta1 = new Stack<int>(); Stack<int> sta2 = new Stack<int>...
2023-10-01
0
215
题解 | #用两个栈实现队列#
using System.Collections.Generic; class Solution { Stack<int> sta1 = new Stack<int>(); Stack<int> sta2 = new Stack<int>...
2023-10-01
0
190
题解 | #输出二叉树的右视图#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 求二叉树的右视图 * @...
2023-09-30
0
205
题解 | #重建二叉树#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; ...
2023-09-27
0
226
题解 | #序列化二叉树#
/* public class TreeNode { public int val; public TreeNode left; public TreeNode right; public TreeNode (int x) { val = x;...
2023-09-20
0
282
题解 | #在二叉树中找到两个节点的最近公共祖先#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; public T...
2023-09-18
0
215
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页