蚂蚁go
蚂蚁go
全部文章
分类
归档
标签
去牛客网
登录
/
注册
蚂蚁go的博客
全部文章
(共77篇)
题解 | #数据流中的中位数#
class Solution { public: void Insert(int num) { nums.push_back(num); } double GetMedian() { double res=0; sort(n...
2024-07-16
0
127
题解 | #寻找第K大#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型vector * @param n int整型 *...
2024-07-16
0
110
题解 | #最小的K个数#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param input int整型vector * @param k int整型 ...
2024-07-16
0
120
题解 | #滑动窗口的最大值#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型vector * @param size int整型 ...
2024-07-16
0
118
题解 | #包含min函数的栈#
class Solution { public: void push(int value) { data.push(value); if(mindata.empty()) mindata.push(value); els...
2024-07-16
0
127
题解 | #用两个栈实现队列#
#include <iterator> class Solution { public: void push(int node) { stack1.push(node); } int pop(){ if(stack2.empty(...
2024-07-13
0
117
题解 | #输出二叉树的右视图#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 求二叉树的右视图 * @param preOrder int整型vector 先序遍历 * @...
2024-07-13
0
117
题解 | #重建二叉树#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2024-07-13
0
121
题解 | #序列化二叉树#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(N...
2024-07-13
0
112
题解 | #在二叉树中找到两个节点的最近公共祖先#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2024-07-02
0
126
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页