菜鸟也要飞的高
菜鸟也要飞的高
全部文章
分类
题解(48)
归档
标签
去牛客网
登录
/
注册
菜鸟也要飞的高的博客
全部文章
(共48篇)
大数加法
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 计算两个数之和 * @param s string字符串 表示第一个整数 ...
2020-11-19
0
665
求平方根
import java.util.*; public class Solution { /** * * @param x int整型 * @return int整型 */ public static int mysqrt (int x...
2020-11-19
0
470
反转字符串
import java.util.*; public class Solution { /** * 反转字符串 * @param str string字符串 * @return string字符串 */ public String sol...
2020-11-19
0
499
找到字符串的最长无重复字符子串
import java.util.*; public class Solution { /** * * @param arr int整型一维数组 the array * @return int整型 */ public static int ...
2020-11-19
0
498
找到字符串的最长无重复字符子串
import java.util.*; public class Solution { /** * * @param arr int整型一维数组 the array * @return int整型 */ public static int ...
2020-11-19
0
478
子数组的最大累加和问题
import java.util.*; public class Solution { /** * max sum of the subarray * @param arr int整型一维数组 the array * @return int整型 *...
2020-11-19
0
445
两数之和
import java.util.*; public class Solution { /** * * @param numbers int整型一维数组 * @param target int整型 * @return int整型一维数组 ...
2020-11-19
1
520
合并两个有序的数组
public class Solution { public void merge(int A[], int m, int B[], int n) { if(B.length == 0){ return; }else if(A....
2020-11-19
0
464
两个链表生成相加链表
import java.util.*; import java.lang.*; public class Solution { public static ListNode addInList (ListNode head1, ListNode head2) { St...
2020-11-19
0
525
链表中环的入口节点
/** * Definition for singly-linked list. * class ListNode { * int val; * ListNode next; * ListNode(int x) { * val = x; * ...
2020-11-19
1
662
首页
上一页
1
2
3
4
5
下一页
末页