我和我
我和我
全部文章
题解
面试必刷TOP101(101)
归档
标签
去牛客网
登录
/
注册
我和我的博客
全部文章
/ 题解
(共130篇)
题解 | #最长公共子序列(二)#
public class Solution { /** * longest common subsequence * @param s1 string字符串 the string * @param s2 string字符串 the string * @...
Java
2021-11-21
0
346
题解 | #大数加法#
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 计算两个数之和 * @param s string字符串 表示第一个整数 * @param t string字符串...
Java
2021-11-21
0
403
题解 | #两个链表生成相加链表#
/* * public class ListNode { * int val; * ListNode next = null; * } */ public class Solution { /** * * @param head1 ListNode类...
Java
2021-11-19
0
290
题解 | #二叉树中和为某一值的路径(二)#
/** public class TreeNode { int val = 0; TreeNode left = null; TreeNode right = null; public TreeNode(int val) { this.val = v...
Java
2021-11-19
0
406
题解 | #表达式求值#
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 返回表达式的值 * @param s string字符串 待计算的表达式 * @return int整型 ...
Java
2021-11-19
0
377
题解 | #最长回文子串#
public class Solution { public int getLongestPalindrome(String A, int n) { // write code here if(A == null){ return 0;...
Java
2021-11-17
0
358
题解 | #寻找第K大#
public class Solution { public int findKth(int[] a, int n, int K) { // write code here if(a == null ||a.length < 1){ ...
Java
2021-11-16
0
301
题解 | #实现二叉树先序,中序和后序遍历#
/* * public class TreeNode { * int val = 0; * TreeNode left = null; * TreeNode right = null; * } */ public class Solution { /** ...
Java
2021-11-16
0
407
题解 | #最小的K个数#
public class Solution { public ArrayList<Integer> GetLeastNumbers_Solution(int [] input, int k) { if (input == null ||input.length...
Java
2021-11-16
0
395
题解 | #在二叉树中找到两个节点的最近公共祖先#
/* * public class TreeNode { * int val = 0; * TreeNode left = null; * TreeNode right = null; * } */ public class Solution { /** ...
Java
2021-11-16
0
321
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页