牛客676277161号
牛客676277161号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客676277161号的博客
全部文章
(共4篇)
题解 | #每K个一组反转链表#
#include <iostream> using namespace std; struct ListNode { int val; struct ListNode* next; ListNode(int x) : val(x), next(NU...
2023-02-23
0
456
题解 | #滑动窗口的最大值#
class Solution { public: vector<int> maxInWindows(const vector<int>& num, unsigned int size) { vector<int> maxvec; ...
2023-02-20
0
287
题解 | #合并两个有序的数组#
class Solution { public: void merge(int A[], int m, int B[], int n) { int C[m+n]; int k=0; int i=0,j=0; while(i<...
2023-02-17
0
250
题解 | #六一儿童节#
#include <iostream> #include <vector> #include<algorithm> using namespace std; int main() { int n,m; int child=0; int ...
2023-02-13
0
483