扣得皮
扣得皮
全部文章
题解
redis(1)
归档
标签
去牛客网
登录
/
注册
扣得皮的博客
全部文章
/ 题解
(共35篇)
两链表生成相加链表
先反转再相加再反转 import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * } */ public class Solution { /** *...
2020-12-04
0
671
HJ5:进制转换
注意: A的码值是65,A对应的十进制为10,所以求取字符A-F的十进制为,例如求E为:E-A+10;字符'0'-'9'的十进制为c-'0'; import java.util.*; public class Main{ public static void main(String[] ar...
2020-08-07
1
1261
[编程题]字符流中第一个不重复的字符
import java.lang.StringBuffer; public class Solution { //Insert one char from stringstream //存储字符流 StringBuffer string=new StringBuffer();...
2020-02-05
0
638
[编程题]表示数值的字符串
public class Solution { public boolean isNumeric(char[] str) { if(str==null){ return false; } String string=St...
2020-02-05
0
674
[编程题]正则表达式匹配
public class Solution { public boolean match(char[] str, char[] pattern) { //检查边界 if(str==null||pattern==null){ retu...
2020-02-04
4
963
[编程题]构建乘积数组
如上图所示先根据offer上的算法,先计算下三角的乘积,再计算上三角的乘积并且拼接 import java.util.ArrayList; public class Solution { public int[] multiply(int[] A) { int length=...
2020-02-04
10
1161
[编程题]把字符串转换成整数
//参考jDK1.5的Integer.parseInt()源码 public class Solution { public int StrToInt(String str) { //如果字符为空字符串 if(str==null){ r...
2020-02-04
0
738
DFS[编程题]机器人的运动范围
public class Solution { public int movingCount(int threshold, int rows, int cols) { //边界条件 if(threshold<0||rows<=0||cols...
2020-02-03
0
702
[编程题]矩阵中的路径
//采用回溯法 public class Solution { public boolean hasPath(char[] matrix, int rows, int cols, char[] str) { //边界条件 if(matrix==null...
2020-02-03
0
721
[编程题]滑动窗口的最大值
import java.util.ArrayList; import java.util.PriorityQueue; import java.util.Comparator; public class Solution { //大顶堆,从大到小的排列 private...
2020-02-02
3
902
首页
上一页
1
2
3
4
下一页
末页