单链表选择排序(C)
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 #define LEN sizeof(struct A) 4 5 struct A 6 { 7 int num; 8 struct A *next; 9 }; 10 struct A *creat(void)//创建链表 11 { 12 struct A *head, *p1, *p2; 13 int n, i 阅读全文
posted @ 2019-08-21 16:40 doublejing26 阅读(456) 评论(0) 推荐(0)
浙公网安备 33010602011771号