你说夕阳很美
你说夕阳很美
全部文章
题解
归档
标签
去牛客网
登录
/
注册
你说夕阳很美的博客
全部文章
/ 题解
(共152篇)
题解 | #将升序数组转化为平衡二叉搜索树#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ class Solution { public: /** * * @...
C++
2021-12-04
0
374
题解 | #最长重复子串#
class Solution { public: int solve(string a) { int n = a.length(); int res = 0; for(int i = n / 2; i > 0; --i) {//枚举长度 ...
C++
2021-12-01
0
291
题解 | #最长重复子串#
class Solution { public: //对具体的起点与长度,确认字符串是否为重复拼接形式 bool check(string& a, int len, int begin) { for(int i = begin; i < len + be...
C++
2021-12-01
0
351
题解 | #找到搜索二叉树中两个错误的节点#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ class Solution { public: /** * * @...
C++
2021-11-27
0
390
题解 | #阶乘末尾0的数量#
class Solution { public: /** * the number of 0 * @param n long长整型 the number * @return long长整型 */ long long thenumberof0(l...
C++
2021-11-25
0
326
题解 | #二叉搜索树与双向链表#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } };*/ class ...
C++
2021-11-24
0
2302
题解 | #矩阵乘法#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param a int整型vector<vector<>> 第一个矩阵 * @p...
C++
2021-11-24
0
424
题解 | #矩阵最长递增路径#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 递增路径的最大长度 * @param matrix int整型vector<vector<>> 描...
C++
2021-11-23
0
374
题解 | #买卖股票的最好时机(三)#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 两次交易所能获得的最大收益 * @param prices int整型vector 股票每一天的价格 * @re...
C++
2021-11-22
0
357
题解 | #合并二叉树#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ class Solution { public: /** * * @...
C++
2021-11-21
0
313
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页