牛客714821070号
牛客714821070号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客714821070号的博客
全部文章
(共2篇)
题解 | #未排序数组中累加和为给定值的最长子数组长度#
#include <stdio.h> #include <stdlib.h> typedef struct hashtable { int val; int key; struct hashtable* next; } hashtable; hasht...
2024-12-11
0
92
不是吧INT_MIN都用不了
#include <math.h> #include <stdio.h> #include <stdlib.h> int min(int a,int b){ return a>b?b:a; } void swap(int i,int j,int *ski...
2024-12-05
0
23