牛客645685286号
牛客645685286号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客645685286号的博客
全部文章
/ 题解
(共3篇)
题解 | #最大值减去最小值小于或等于num的子数组数量#
#include<stdio.h> #include<stdlib.h> #include<deque> #include<math.h> using namespace std; struct mypair{ int v...
C++
2022-02-21
0
449
题解 | #判断链表中是否有环#
/** Definition for singly-linked list. struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; */ class Soluti...
C++
2022-02-12
0
321
题解 | #重排链表#
/** Definition for singly-linked list. struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; */ class Soluti...
C++
2022-02-11
0
344