Until_you
Until_you
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Until_you的博客
全部文章
(共4篇)
题解 | #扭蛋机#
#include<stdio.h> int main() { int N,x=0,i=0; int a[1024]={0}; scanf("%d",&N); whil...
C
2022-08-16
7
513
题解 | #序列找数#
#include<stdio.h> int main(int argc,char *argv[]) { int num,sum=0,x,y; scanf("%d ",&num); for(int...
C
C++
2022-08-16
7
940
题解 | #判断链表中是否有环#
#include <stdbool.h> /** * struct ListNode { * int val; * struct ListNode *next;...
C
2022-08-16
0
303
题解 | #排序#
int* MySort(int* arr, int arrLen, int* returnSize ) { // write code here if((arrLen == 0)||(arrLen == 1)) { ...
C
计数排序
2022-08-09
2
394