Mr.galaxy
Mr.galaxy
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Mr.galaxy的博客
全部文章
(共31篇)
题解 | #排序奇升偶降链表#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 * @return ListNode类 ...
2023-04-01
0
263
题解 | #二叉树的最大宽度#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullpt...
2023-03-23
0
369
题解 | #二叉树的最大宽度#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullpt...
2023-03-22
0
242
题解 | #对角线遍历矩阵#
#include <cstddef> #include <vector> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @...
2023-03-15
1
370
题解 | #螺旋矩阵#
#include <vector> class Solution { public: vector<int> spiralOrder(vector<vector<int> > &matrix) { vector<i...
2023-02-17
0
269
题解 | #二叉树根节点到叶子节点的所有路径和#
#include <vector> class Solution { public: /** * * @param root TreeNode类 * @return(756076230) int整型 */ vector<v...
2023-01-31
0
345
题解 | #单词搜索#
#include <string> class Solution { public: bool exist(vector<string>& board, string word) { // write code here in...
2023-01-15
0
446
题解 | #二进制取反#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num string字符串 * @return(756076230) str...
2023-01-11
0
256
题解 | #压缩字符串(一)#
#include <string> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param param string字符串 ...
2023-01-10
0
342
题解 | #直方图内最大矩形#
#include <algorithm> #include <stack> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @...
2023-01-09
0
296
首页
上一页
1
2
3
4
下一页
末页