N_zip
N_zip
全部文章
分类
归档
标签
去牛客网
登录
/
注册
N_zip的博客
全部文章
(共73篇)
题解 | 按之字形顺序打印二叉树
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2025-08-15
0
22
题解 | 求二叉树的层序遍历
class Solution { public: /*void traverse(TreeNode* root, vector<vector<int>>& res, int depth) { if(root){ //新的...
2025-08-15
0
21
题解 | 二叉搜索树的最近公共祖先
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2025-08-13
0
16
题解 | 判断是不是平衡二叉树
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2025-08-13
0
15
题解 | 判断是不是二叉搜索树
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2025-08-12
0
22
题解 | 二叉树的镜像
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2025-08-12
0
24
题解 | 验证栈序列
#include <iostream> #include <stack> #include <vector> using namespace std; bool judge(vector<int> & pushed,vector<int...
2025-08-11
0
19
题解 | 矩阵的最小路径和
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param matrix int整型vector<vector<>> the...
2025-08-09
1
22
题解 | 不同路径的数目(一)
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param m int整型 * @param n int整型 * @retu...
2025-08-09
0
16
题解 | N皇后问题
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 the n * @return int整型 */ ...
2025-08-08
0
20
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页