程昱同学
程昱同学
全部文章
分类
归档
标签
去牛客网
登录
/
注册
程昱同学的博客
全部文章
(共127篇)
题解 | #按之字形顺序打印二叉树#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(N...
2023-02-11
0
275
题解 | #求二叉树的层序遍历#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ #include <iterator> #include <vector>...
2023-02-11
0
352
题解 | #二叉树的中序遍历#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2023-02-11
0
257
题解 | #比较版本号#
#include <sstream> #include <vector> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 比较版本号 ...
2023-02-11
0
266
题解 | #旋转数组的最小数字#
class Solution { public: vector<int> a; int findMin(int l,int r) { while(l<r) { int mid=(l+r)/2; ...
2023-02-11
0
261
题解 | #数组中的逆序对#
#include <vector> class Solution { public: //利用归并排序 long long ans; vector<int> a; vector<int>t; void merge(int l...
2023-02-11
0
270
题解 | #寻找峰值#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @return(756076230) ...
2023-02-11
0
304
题解 | #二维数组中的查找#
class Solution { public: vector<vector<int> > matrix; int myTarget; bool flag; void isExist(int x,int y) { if(...
2023-02-11
0
289
题解 | #二分查找-I#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @param target int整型...
2023-02-11
0
302
题解 | #删除有序链表中重复的元素-II#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ #include <cstdio> class Solution { public: /** * * @par...
2023-02-10
0
252
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页