刘霖松
刘霖松
全部文章
题解
归档
标签
去牛客网
登录
/
注册
刘霖松的博客
全部文章
/ 题解
(共7篇)
题解 | #字符串变形#
java代码,思想很好理解,大写变小写,小写变大写,翻转是先对整个字符串反转,然后利用stringbuffer对字符串的字符逐个进行翻转,遇到空格就把stringbuffer反转然后存到答案中,然后把stringbuffer清空,这样可以保证stringbuffer只存了字符串的每个单词。 impo...
2021-04-30
2
769
暴力
import java.util.*; public class Solution { /** * * @param x int整型 * @return int整型 */ public int reverse (int x) { ...
2021-03-28
2
615
if(stack2.empty()||stack2.top()>=op[i][1])判空放在||后面会报错
class Solution { public: /** * return a array which include all ans for op3 * @param op int整型vector<vector<>> operator ...
2021-03-25
1
661
优化后的动态规划
class Solution {public: /** * * @param m int整型 * @param n int整型 * @return int整型 */ int uniquePaths(int m, int n) { //...
2021-03-24
1
547
guol
public int search (int[] nums, int target) { // write code here int left=0; int right=nums.length; if(nums.length==0) { re...
2021-03-15
0
743
有个样例过不了,求解
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 如果目标值存在返回下标,否则返回 -1 * @param nums int整型一...
2021-03-15
2
1067
tijie
import java.util.*; public class Solution { public int findKth(int[] a, int n, int K) { // write code here int low=0; int high...
2021-03-15
1
505