牛牛想要一个面试
牛牛想要一个面试
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛牛想要一个面试的博客
全部文章
(共80篇)
题解 | #反转字符串#
#include <fstream> class Solution { public: /** * 反转字符串 * @param str string字符串 * @return(756076230) string字符串 */ st...
2023-01-30
0
245
题解 | #最小覆盖子串#
#include <string> #include <unordered_map> class Solution { public: /** * * @param S string字符串 * @param T string字符串 ...
2023-01-30
0
253
题解 | #合并区间#
解题思路:排序+贪心知识点:贪心思想贪心思想属于动态规划思想中的一种,其基本原理是找出整体当中给的每个局部子结构的最优解,并且最终将所有的这些局部最优解结合起来形成整体上的一个最优解。思路:什么样的区间能够合并,那肯定是有交叉的区间,即后一个区间的尾小于前一个区间的首,这时候可以将这种交叉区间的尾合...
2023-01-30
0
438
题解 | #判断是否为回文字符串#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param str string字符串 待判断的字符串 * @return(756076230) boo...
2023-01-30
0
323
题解 | #合并两个有序的数组#
class Solution { public: void merge(int A[], int m, int B[], int n) { int a = m-1; int b = n-1; int right = m + n - 1; ...
2023-01-30
0
227
题解 | #大数加法#
#include <algorithm> #include <string> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 计算两个数之和 * ...
2023-01-29
0
357
题解 | #验证IP地址#
#include <cctype> class Solution { public: /** * 验证IP地址 * @param IP string字符串 一个IP地址字符串 * @return(756076230) string字符串 *...
2023-01-29
0
254
题解 | #最长公共前缀#
#include <string> class Solution { public: /** * * @param strs string字符串vector * @return(756076230) string字符串 */ s...
2023-01-29
0
359
题解 | #字符串变形#
#include <cctype> #include <fstream> #include <iterator> class Solution { public: void resverse(string &s,int start,int end) ...
2023-01-29
0
279
题解 | #矩阵最长递增路径#
1.DFS #include <vector> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 递增路径的最大长度 * @param matrix int整型...
2023-01-28
0
301
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页