猫头鹰的咖啡馆
猫头鹰的咖啡馆
全部文章
题解
归档
标签
去牛客网
登录
/
注册
猫头鹰的咖啡馆的博客
全部文章
/ 题解
(共163篇)
题解 | #二维数组中的查找#
/* 思路:从右上角开始找 if(curr == target) { return true; } else if (target < curr) { line--; } else { column++; } */ class Solution { public: ...
C++
2021-10-13
0
338
题解 | #矩阵的最小路径和#
class Solution { public: /** * * @param matrix int整型vector<vector<>> the matrix * @return int整型 */ /* ...
C++
2021-10-13
0
338
题解 | #两个链表生成相加链表#
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} ...
C++
2021-10-12
0
293
题解 | #表达式求值#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 返回表达式的值 * @param s string字符串 待计算的表达式 * @return int整型 ...
C++
2021-10-12
0
346
题解 | #表达式求值#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 返回表达式的值 * @param s string字符串 待计算的表达式 * @return int整型 ...
C++
2021-10-12
0
260
题解 | #单链表的排序#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ class Solution { public: /** * * @param head ListNode类 the he...
C++
2021-10-12
0
300
题解 | #数组中出现次数超过一半的数字#
class Solution { public: int MoreThanHalfNum_Solution(vector<int> numbers) { sort(numbers.begin(), numbers.end()); return (n...
C++
2021-10-12
0
397
题解 | #字符串出现次数的TopK问题#
class Solution { public: /** * return topK string * @param strings string字符串vector strings * @param k int整型 the k * @return st...
C++
2021-10-12
0
362
题解 | #最长公共子串#
/* dp(i.j)表示,公共子串如果是最后(i,j)的话,最长子串长短是多少? 维护一个maxLen,不断更新最长子串长度。并不断记录startIndex if(str1(i) != str2(j)) { dp(i,j) = 0 } else { dp(i,j) = dp(i-1,...
C++
2021-10-12
0
335
题解 | #删除链表的倒数第n个节点#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ class Solution { public: /** * * @param head ListNode类 ...
C++
2021-10-12
0
343
首页
上一页
8
9
10
11
12
13
14
15
16
17
下一页
末页