牛客463999991号
牛客463999991号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客463999991号的博客
全部文章
(共3篇)
题解 | #链表合并#
#include <stdio.h> #include <stdlib.h> typedef struct ListNode { int val; struct ListNode* next; } ListNode; ListNode* createList() ...
2023-11-24
1
239
题解 | #最大乘积# C #暴力
#include <stdio.h> int main() { int n; long long min1,min2,max1,max2,max3; int a[100005] = {0}; int i; while (scanf("%...
2023-11-23
1
228
题解 | #集合#
#include <stdio.h> #include <stdbool.h> // 快速排序 void quickSort(int* arr, int left, int right) { if (left >= right) { return; }...
2023-11-22
2
254