bao_hu_yuan_zhang
bao_hu_yuan_zhang
全部文章
分类
归档
标签
去牛客网
登录
/
注册
bao_hu_yuan_zhang的博客
全部文章
(共124篇)
题解 | #斐波那契数列#C++暴力递归解法
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @return int整型 */ in...
2024-01-31
0
137
题解 | #按之字形顺序打印二叉树#C++二叉树递归解法
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2024-01-31
0
222
题解 | #二叉搜索树与双向链表#C++暴力遍历解法
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } };*/ class ...
2024-01-31
0
148
题解 | #二分查找#C++暴力二分查找解法
class BinarySearch { public: int getPos(vector<int> A, int n, int val) { int i=0; int j=n-1; while(i<=j) ...
2024-01-30
0
213
题解 | #三数之和#C++暴力排序解法
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型vector * @return int整型vector&...
2024-01-30
0
159
题解 | #合并二叉树#C++暴力遍历递归解法
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2024-01-29
0
173
题解 | #旋转数组的最小数字#C++暴力排序解法
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @return int整型 ...
2024-01-29
0
157
题解 | #对称的二叉树#C++二叉树暴力递归解法
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2024-01-28
0
166
题解 | #最小的K个数#C++暴力遍历排序解法
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param input int整型vector * @param k int整型 ...
2024-01-28
0
172
题解 | #大数加法#C++暴力字符串加法解法
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 计算两个数之和 * @param s string字符串 表示第一个整数 * @param t s...
2024-01-27
0
199
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页