苦行潜修者
苦行潜修者
全部文章
分类
归档
标签
去牛客网
登录
/
注册
苦行潜修者的博客
全部文章
(共80篇)
题解 | #矩阵元素查找#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param mat...
2024-03-28
0
171
题解 | #删除有序链表中重复的元素-II#
using System; using System.Collections.Generic; /* public class ListNode { public int val; public ListNode next; public ListNode (int x)...
2024-03-28
0
144
题解 | #判断一个链表是否为回文结构#
using System; using System.Collections.Generic; using System.Text; /* public class ListNode { public int val; public ListNode next; publ...
2024-03-27
0
138
题解 | #矩阵的最小路径和#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param mat...
2024-03-27
0
145
题解 | #单链表的排序#
using System; using System.Collections.Generic; /* public class ListNode { public int val; public ListNode next; public ListNode (int x)...
2024-03-27
0
153
题解 | #二叉树的最大深度#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; ...
2024-03-27
0
130
题解 | #实现二叉树先序,中序和后序遍历#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; ...
2024-03-27
0
151
题解 | #岛屿数量#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 判断岛屿数量 * @pa...
2024-03-27
0
128
题解 | #完全二叉树结点数#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; ...
2024-03-27
0
138
题解 | #丑数#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param ind...
2024-03-27
0
155
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页