苦行潜修者
苦行潜修者
全部文章
分类
归档
标签
去牛客网
登录
/
注册
苦行潜修者的博客
全部文章
(共80篇)
题解 | #数字在升序数组中出现的次数#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num...
2024-03-29
0
153
题解 | #懂二进制#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param m i...
2024-03-29
0
176
题解 | #调整数组顺序使奇数位于偶数前面(一)#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr...
2024-03-29
0
178
题解 | #连续子数组的最大乘积#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num...
2024-03-29
0
154
题解 | #把二叉树打印成多行#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; ...
2024-03-29
0
118
题解 | #数据流中的中位数#
using System.Collections.Generic; class Solution { List<int> list = new List<int>(); public void Insert(int num) { // wri...
2024-03-29
0
106
题解 | #旋转数组#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 旋转数组 * @para...
2024-03-29
0
127
题解 | #大数乘法#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s s...
2024-03-29
0
164
题解 | #最大数#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 最大数 * @param...
2024-03-29
0
137
题解 | #链表的奇偶重排#
using System; using System.Collections.Generic; /* public class ListNode { public int val; public ListNode next; public ListNode (int x)...
2024-03-28
0
128
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页