苦行潜修者
苦行潜修者
全部文章
分类
归档
标签
去牛客网
登录
/
注册
苦行潜修者的博客
全部文章
(共80篇)
题解 | #删除有序链表中重复的元素-I#
using System; using System.Collections.Generic; /* public class ListNode { public int val; public ListNode next; public ListNode (int x)...
2024-03-26
0
176
题解 | #反转数字#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x i...
2024-03-26
0
144
题解 | #进制转换#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 进制转换 * @para...
2024-03-26
0
144
题解 | #数组中出现次数超过一半的数字#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num...
2024-03-26
0
162
题解 | #判断是不是平衡二叉树#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; ...
2024-03-26
0
141
题解 | #判断是否为回文字符串#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str...
2024-03-26
0
127
题解 | #二叉树的最大深度#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; ...
2024-03-26
0
135
题解 | #有效括号序列#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s s...
2024-03-25
0
158
题解 | #最长无重复子数组#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr...
2024-03-25
0
130
题解 | #实现二叉树先序,中序和后序遍历#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; ...
2024-03-23
0
128
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页