猪猪向前冲
猪猪向前冲
全部文章
分类
未归档(4)
题解(70)
归档
标签
去牛客网
登录
/
注册
猪猪向前冲的博客
全部文章
(共75篇)
题解 | #最长公共子串#
public: /** * longest common substring * @param str1 string字符串 the string * @param str2 string字符串 the string * @return string字...
C++
2022-03-23
0
312
题解 | #编辑距离(一)#
public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str1 string字符串 * @param str2 string字符串 * @return ...
C++
2022-03-23
0
306
题解 | #打家劫舍(一)#
public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @return int整型 */ int rob(ve...
C++
2022-03-20
0
283
题解 | #不同路径的数目(二)#
public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param obstacleGrid int整型vector<vector<>> * @retur...
C++
2022-03-20
0
350
题解 | #不同路径的数目(一)#
public: /** * * @param m int整型 * @param n int整型 * @return int整型 */ int uniquePaths(int m, int n) { vector&...
C++
2022-03-20
0
299
题解 | #判断是否为回文字符串#
public: bool judge(string str) { int left = 0; //⾸ int right = str.length() - 1; //尾 while(left < right){ //⾸尾往中间靠 if(str[left] != str[right])...
C++
2022-03-11
0
183
题解 | #螺旋矩阵#
public: vector<int> spiralOrder(vector<vector<int> > &matrix) { if (matrix.empty() || matrix[0].empty()) return {}; ...
C++
2022-03-11
0
232
题解 | #合并两个有序的数组#
public: void merge(int A[], int m, int B[], int n) { int end = m + n - 1; int ia = m - 1; int ib = n - 1; while(en...
C++
2022-03-10
0
224
题解 | #最长公共前缀#
class Solution { public: string longestCommonPrefix(vector<string>& strs) { &nb...
C++
2022-03-10
0
181
题解 | #三数之和#
class Solution { public: vector<vector<int>> threeSum(vector<int>& nums) { &nbs...
C++
2022-03-10
0
265
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页