寒山客L
寒山客L
全部文章
题解
office技巧(3)
学习笔记(5)
待完善代码题(3)
日常瞎bb(1)
未归档(1)
面经(2)
归档
标签
去牛客网
登录
/
注册
今天也是努力搬砖的一天
智力是最可靠的运气。
全部文章
/ 题解
(共2篇)
题解 | #牛牛的链表删除#
#include<stdio.h> typedef struct link{ int elem; struct link *next; }link,*linklist; int main(){ int n,x,i; scanf("%d %d",&n...
C
数组
链表
2022-03-01
0
484
题解 | #牛牛的单链表求和#
#include<stdio.h> typedef struct link{ int elem; struct link *next; }link,*linklist; int main(){ int n,i,sum=0; scanf("%d",&...
C
链表
数组
2022-03-01
0
379