你说夕阳很美
你说夕阳很美
全部文章
分类
题解(152)
归档
标签
去牛客网
登录
/
注册
你说夕阳很美的博客
全部文章
(共153篇)
题解 | #最小编辑代价#
class Solution { public: /** * min edit cost * @param str1 string字符串 the string * @param str2 string字符串 the string * @param ic...
C++
2021-09-16
0
433
题解 | #判断一个链表是否为回文结构#
class Solution { public: /** * 进制转换 * @param M int整型 给定整数 * @param N int整型 转换到的进制 * @return string字符串 */ string solve...
C++
2021-09-15
0
461
题解 | #矩阵的最小路径和#
class Solution { public: /** * 进制转换 * @param M int整型 给定整数 * @param N int整型 转换到的进制 * @return string字符串 */ string solve...
C++
2021-09-15
0
302
题解 | #矩阵的最小路径和#
class Solution { public: /** * return topK string * @param strings string字符串vector strings * @param k int整型 the k * @return st...
2021-09-14
0
308
题解 | #矩阵的最小路径和#
class Solution { public: int solve(string s) { int res = 0; //用于返回当前字符串的计算结果 stack<int> sum; //用于求和 char sign = '+';...
2021-09-14
0
278
题解 | #矩阵的最小路径和#
class Solution { public: /** * * @param matrix int整型vector<vector<>> the matrix * @return int整型 */ int minPat...
2021-09-14
0
373
题解 | #数组中出现次数超过一半的数字#
class Solution { public: int MoreThanHalfNum_Solution(vector<int> numbers) { int half = numbers.size() / 2; map<int, int&...
2021-09-13
0
332
题解 | #单链表的排序#
class Solution { public: bool IsBalanced_Solution(TreeNode* pRoot) { // 当树为空时,返回TRUE if(pRoot == nullptr) return true...
2021-09-13
0
330
题解 | #单链表的排序#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ class Solution { public: /** * * @param head ListNode类 ...
2021-09-13
0
316
题解 | #岛屿数量#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param str string字符串 待判断的字符串 * @return bool布尔型 *...
2021-09-13
0
310
首页
上一页
6
7
8
9
10
11
12
13
14
15
下一页
末页