苦行潜修者
苦行潜修者
全部文章
分类
归档
标签
去牛客网
登录
/
注册
苦行潜修者的博客
全部文章
(共80篇)
题解 | #排序奇升偶降链表#
using System; using System.Collections.Generic; /* public class ListNode { public int val; public ListNode next; public ListNode (int x)...
2024-04-23
0
139
题解 | #每日温度#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 每日温度 * @para...
2024-04-23
0
162
题解 | #旋转链表#
using System; using System.Collections.Generic; /* public class ListNode { public int val; public ListNode next; public ListNode (int x)...
2024-04-23
0
118
题解 | #字符串解码#
using System; using System.Collections.Generic; using System.Text; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * *...
2024-04-23
0
192
题解 | #验证IP地址#
using System; using System.Collections.Generic; using System.Text.RegularExpressions; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法...
2024-04-23
0
177
题解 | #只出现一次的数字(二)#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num...
2024-04-23
0
192
题解 | #加起来和为目标值的组合#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param tar...
2024-04-22
0
163
题解 | #给单链表加一#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * public ListNode(int val) { * this.val = val; * ...
2024-04-22
0
198
题解 | #数字字符串转化成IP地址#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s s...
2024-04-22
0
154
题解 | #寻找峰值#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num...
2024-04-22
0
144
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页