苦行潜修者
苦行潜修者
全部文章
分类
归档
标签
去牛客网
登录
/
注册
苦行潜修者的博客
全部文章
(共80篇)
题解 | #第一个只出现一次的字符#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str...
2024-03-26
0
182
题解 | #扑克牌顺子#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num...
2024-03-26
0
174
题解 | #将升序数组转化为平衡二叉搜索树#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; ...
2024-03-26
0
137
题解 | #合并二叉树#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; ...
2024-03-26
0
141
题解 | #判断t1树中是否有与t2树完全相同的子树#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; ...
2024-03-26
0
163
题解 | #二叉树的镜像#
using System; using System.Collections.Generic; /* public class TreeNode { public int val; public TreeNode left; public TreeNode right; ...
2024-03-26
0
163
题解 | #二进制中1的个数#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n i...
2024-03-26
0
154
题解 | #链表中倒数最后k个结点#
using System; using System.Collections.Generic; /* public class ListNode { public int val; public ListNode next; public ListNode (int x)...
2024-03-26
0
170
题解 | #字符串变形#
using System; using System.Collections.Generic; using System.Text; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * ...
2024-03-26
0
128
题解 | #最长公共前缀#
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str...
2024-03-26
0
138
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页