柴崎越
柴崎越
全部文章
分类
Leetcode(85)
代码总结(4)
毕业设计(18)
归档
标签
去牛客网
登录
/
注册
ccy的博客
学习
TA的专栏
21篇文章
0人订阅
代码总结
21篇文章
877人学习
全部文章
(共11篇)
Leetcode 299 猜数字游戏
来自专栏
代码 import java.util.*; class Solution { public String getHint(String secret, String guess) { int count1=0; int count2=0; ...
字符串处理
数组
Leetcode
哈希
2020-05-05
0
683
代码总结 如何编写一个基本计算器
来自专栏
概述 对Leetcode中的基本计算器的总结 只能计算加减的 public static int cal(String str){ Stack<Integer> stack=new Stack<>(); String sign="+&...
递归
字符串处理
栈
Leetcode
2020-04-23
0
664
Leetcode 227 基本计算器||
来自专栏
解法 注意转化子问题的时机,可以一时间一块弹出两个元素。 代码 import java.util.Stack; class Solution { public static int calculate(String s) { Stack<String> stack...
字符串处理
栈
Leetcode
2020-04-23
0
813
Leetcode 224 基本计算器
来自专栏
解法 n的使用,来判断是否有数大步骤是逆序的 代码 import java.util.Stack; class Solution { public int cal(Stack<String> stack) { int res=Integer.parseIn...
字符串处理
栈
Leetcode
2020-04-22
0
749
Leetcode 165 比较版本号
题目 代码分析 需要注意判断长度不同的情况 代码展示 class Solution { public int compareVersion(String version1, String version2) { String[] v1 = version1.split(...
字符串处理
Leetcode
2020-02-11
0
477
Leetcode 3 无重复字符的最长字串
题目 代码分析 使用到了hashmap,同时需要注意的是,我们需要一个pre,并且一直向前移动 代码实现 public static int lengthOfLongestSubstring(String s) { char[] chas = s.toCharArray(); ...
字符串处理
Leetcode
哈希
2020-02-06
0
477
Leetcode 151 翻转字符串里的单词
题目 分析 下标和空格结合划分字符串 代码实现 自己的解法 class Solution { public String reverseWords(String s) { if(s==null||s.length()==0) return ""; ...
字符串处理
Leetcode
2020-02-06
0
591
Leetcode5 最长回文字串
题目 代码分析 使用动态规划,写出状态转移方程之后,再去判断动态规划的路线 代码实现 public static String longestPalindrome(String s) { char[] chas = s.toCharArray(); boolean[...
字符串处理
动态规划
Leetcode
2020-02-03
0
535
Leetcode6 Z字形变换
题目 代码分析 通过flag来改变走的方向 代码实现 public static String convert(String s, int nRows) { ArrayList<StringBuilder> list=new ArrayList<>(); ...
字符串处理
Leetcode
2020-01-31
0
489
Leetcode 7 整数反转
题目 代码分析 代码实现 public class Solution { public int reverse(int x) { String strx=String.valueOf(x); boolean flag=true; if(str...
字符串处理
Leetcode
2020-01-31
0
572
首页
上一页
1
2
下一页
末页