你说夕阳很美
你说夕阳很美
全部文章
题解
归档
标签
去牛客网
登录
/
注册
你说夕阳很美的博客
全部文章
/ 题解
(共152篇)
题解 | #从下到上打印二叉树#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
C++
2022-01-18
0
514
题解 | #汉诺塔问题#
class Solution { public: vector<string> solution; void dfs(int n, string left, string mid, string right) { if(n == 0) ...
C++
2022-01-17
0
462
题解 | #对称的二叉树#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(N...
C++
2022-01-17
0
361
题解 | #二叉树中和为某一值的路径(二)#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } };*/ class ...
C++
2022-01-15
0
392
题解 | #二叉树中和为某一值的路径(二)#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } };*/ class ...
C++
2022-01-15
0
394
题解 | #从中序与后序遍历序列构造二叉树#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
C++
2022-01-11
3
698
题解 | #插入区间#
/** * struct Interval { * int start; * int end; * Interval(int s, int e) : start(start), end(e) {} * }; */ class Solution { public: /** ...
C++
2022-01-08
0
467
题解 | #重复的DNA序列#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param DNA string字符串 1 * @return string字符串vect...
C++
2021-12-29
0
402
题解 | #数组中只出现一次的数(其它数出现k次)#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr intvector * @param k int * @...
C++
2021-12-28
0
462
题解 | #最大公约数#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 求出a、b的最大公约数。 * @param a int * @param b int ...
C++
2021-12-28
0
336
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页