永往直前
永往直前
全部文章
分类
题解(26)
归档
标签
去牛客网
登录
/
注册
永往直前的博客
全部文章
(共25篇)
题解 | #接雨水问题#
public class Solution { /** * max water * @param arr int整型一维数组 the array * @return long长整型 */ public long maxWater (int[] ...
Java
2022-05-04
0
321
题解 | #计算某字符出现次数#
public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String str = scanner.nextLi...
Java
数组
2022-04-25
0
220
题解 | #最小覆盖子串#
public class Solution { /** * * @param S string字符串 * @param T string字符串 * @return string字符串 */ public String minWi...
Java
双指针
2022-04-19
0
315
题解 | #接雨水问题#
public class Solution { /** * max water * @param arr int整型一维数组 the array * @return long长整型 */ public long maxWater (int[] ...
Java
双指针
2022-04-19
2
286
题解 | #矩阵最长递增路径#
public class Solution { private int[][] dirs = new int[][] { {-1, 0}, {1, 0}, {0, -1}, {0, 1} }; ...
Java
2022-04-18
0
328
题解 | #二叉树中和为某一值的路径(一)#
/* * public class TreeNode { * int val = 0; * TreeNode left = null; * TreeNode right = null; * } */ public class Solution { /** ...
Java
深度优先搜索
2022-04-18
1
287
题解 | #数位染色#
// 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); ...
Java
动态规划
2022-04-18
0
330
题解 | #输出二叉树的右视图#
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 求二叉树的右视图 * @param xianxu int整型一维数组 先序遍历 * @param zhongxu ...
Java
2022-04-18
1
379
题解 | #【模板】前缀和#
// 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); ...
Java
动态规划
2022-04-17
1
343
题解 | #最长上升子序列(一)#
// 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); ...
Java
动态规划
2022-04-17
0
347
首页
上一页
1
2
3
下一页
末页