bao_hu_yuan_zhang
bao_hu_yuan_zhang
全部文章
分类
归档
标签
去牛客网
登录
/
注册
bao_hu_yuan_zhang的博客
全部文章
(共124篇)
题解 | #没有重复项数字的全排列#C++暴力全排列函数解法
#include <algorithm> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型vector ...
2024-02-04
0
139
题解 | #二叉树中和为某一值的路径(一)#C++暴力递归
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2024-02-04
0
144
题解 | #跳台阶#C++暴力递归解法
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param number int整型 * @return int整型 */ ...
2024-02-03
0
175
题解 | #输出二叉树的右视图#C++先构造,再层次遍历
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 求二叉树的右视图 * @param preOrder int整型vector 先序遍历 * @pa...
2024-02-03
0
207
题解 | #最长公共前缀#C++字符串公共前缀暴力遍历解法
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param strs string字符串vector * @return string字...
2024-02-02
0
175
题解 | #字符串的排列#C++暴力全排列函数解法
#include <algorithm> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str string字符串 ...
2024-02-02
0
188
题解 | #用两个栈实现队列#C++暴力栈实现队列解法
class Solution { public: void push(int node) { stack1.push(node); } int pop() { while(stack1.empty()!=1) ...
2024-02-01
0
176
题解 | #重建二叉树#C++暴力哈希表递归解法
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2024-02-01
0
146
题解 | #判断是否为回文字符串#C++暴力解法
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str string字符串 待判断的字符串 * @return bool布尔型...
2024-01-31
0
169
题解 | #判断是不是完全二叉树#C++解法,仅关注最后一行
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2024-01-31
0
166
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页