你说夕阳很美
你说夕阳很美
全部文章
题解
归档
标签
去牛客网
登录
/
注册
你说夕阳很美的博客
全部文章
/ 题解
(共152篇)
题解 | #岛屿数量#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ class Solution { public: /** * ...
2021-09-10
0
259
题解 | #岛屿数量#
BFS宽度优先搜索 class Solution { public: /** * 判断岛屿数量 * @param grid char字符型vector<vector<>> * @return int整型 */ void...
2021-09-10
0
324
题解 | #输出二叉树的右视图#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 求二叉树的右视图 * @param xianxu int整型vector 先序遍历 * @param zhong...
2021-09-10
0
297
题解 | #接雨水问题#
class Solution { public: /** * max water * @param arr int整型vector the array * @return long长整型 */ long long maxWater(vector...
2021-09-09
0
411
题解 | #字符串的排列#
class Solution { public: vector<string> res; void dfs(string str, int x) { // str是排列的string,x是排列到的string的下标 if(x == str.size() -...
2021-09-09
0
330
题解 | #合并k个已排序的链表#
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} ...
2021-09-08
0
307
题解 | #包含min函数的栈#
class Solution { public: stack<int> s; stack<int> a; // 存储最小值于栈顶 void push(int value) { s.push(value); if(a.em...
2021-09-07
0
273
题解 | #在旋转过的有序数组中寻找目标值#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @param target int整型...
2021-09-07
0
337
题解 | #求平方根#
class Solution { public: /** * * @param x int整型 * @return int整型 */ int mysqrt(int x) { // write code here ...
2021-09-06
0
404
题解 | #重建二叉树#
class Solution { public: /** * retrun the longest increasing subsequence * @param arr int整型vector the array * @return int整型vector ...
2021-09-06
0
295
首页
上一页
7
8
9
10
11
12
13
14
15
16
下一页
末页