数据结构
文章平均质量分 76
干掉学霸我称王
这个作者很懒,什么都没留下…
展开
-
线性表
#include<stdio.h> #include<stdlib.h> #define MAXSIZE 20 typedef int ElemType; typedef struct { ElemType a[MAXSIZE]; int length; }SqList; SqList a,b,c; void creat_list(SqList *L); v...原创 2018-05-07 15:47:34 · 275 阅读 · 0 评论 -
链表
#include<stdio.h> #include<stdlib.h> #include<math.h> typedef int ElemType; typedef struct Lnode { ElemType data; struct Lnode *next; }LNode; LNode *L,*L1,*L2; LNode *creat...原创 2018-05-07 15:49:27 · 292 阅读 · 0 评论