- 博客(4)
- 收藏
- 关注
原创 单链表递增排序
#include<stdio.h>#include<stdlib.h>typedef struct LNode{ int data; struct LNode* next;}LNode,*LinkList;LinkList TailInsert(LinkList L){ L=(LinkList)malloc(sizeof(LNode)); int x; LNode *s,*p=L; scanf("%d",&x); while(x!=99){ s=(
2020-09-12 14:58:36
666
原创 单链表转置之指针反转
#include<stdio.h>#include<stdlib.h>typedef struct LNode{ int data; struct LNode* next;}LNode,*LinkList;LinkList TailInsert(LinkList L){ L=(LinkList)malloc(sizeof(LNode)); int x; LNode *s,*p=L; scanf("%d",&x); while(x!=99){ s=(
2020-09-06 21:17:55
196
原创 单链表删除最小结点
#include<stdio.h>#include<stdlib.h>#include<stdio.h>#include<stdlib.h>typedef struct LNode{ int data; struct LNode* next;}LNode,*LinkList;LinkList TailInsert(LinkList L){ L=(LinkList)malloc(sizeof(LNode)); int x; LNode *
2020-09-04 20:12:53
204
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人