bsdn_n
bsdn_n
全部文章
分类
归档
标签
去牛客网
登录
/
注册
bsdn_n的博客
全部文章
(共70篇)
题解 | #牛牛的链表添加节点#
#include<stdio.h> #include<stdlib.h> typedef struct num { int num; struct&n...
2022-08-10
0
319
题解 | #牛牛的链表删除#
#include<stdio.h>//两种删除代码 #include<stdlib.h> typedef struct num { int num; ...
2022-08-10
1
350
题解 | #牛牛的双链表求和#
#include<stdio.h> #include<stdlib.h> typedef struct num { int num; struct&n...
2022-08-09
0
329
题解 | #牛牛的单链表求和#
#include<stdio.h> typedef struct num { int num ; struct num* next; }link; link* create(int n,int arr[]) { &nb...
2022-08-09
1
308
题解 | #牛牛的链表交换#
#include<stdio.h> #include<stdlib.h> typedef struct num { int num; struct&n...
2022-08-09
0
302
题解 | #牛牛的单向链表#
#include<stdio.h> #include<stdlib.h> typedef struct num { int num; struct&n...
2022-08-09
0
243
题解 | #牛牛的排序#
#include<stdio.h>//可以尝试下其他方式的排序哦 void sort(int *a,int n) { for(int i=0;i<n;i++)  ...
2022-08-08
0
260
题解 | #牛牛的新数组求和#
看了看别的dalao的,函数内改成*(a+i)也可以哦 #include<stdio.h> int cal(int *a,int n) { int sum=0; &...
2022-08-08
0
237
题解 | #利用指针遍历数组#
#include<stdio.h> int main()//欢迎大佬萌新参考指正哦,使用地址增加的方法 { int arr[7]; int *a=arr;//ar...
2022-08-08
1
258
题解 | #编写函数实现两数交换(指针方式)#
#include<stdio.h>//使用了指针和二重指针哦,欢迎大佬萌新点评改正 int main() { int m,n; scanf("%d%d",&m,&a...
2022-08-08
3
344
首页
上一页
1
2
3
4
5
6
7
下一页
末页