seyOrd

导航

2020年4月20日 #

完整的链表例子_byseyOrd

摘要: 1 #include<malloc.h> 2 3 #include<stdlib.h> 4 5 6 7 typedef int Elemtype; 8 9 typedef int Status; 10 11 12 13 typedef struct LNode{ 14 15 Elemtype dat 阅读全文

posted @ 2020-04-20 15:28 seyOrd 阅读(198) 评论(0) 推荐(0)

完整的顺序表例子_byseyOrd

摘要: 1 #include "stdafx.h" 2 #include<stdio.h> 3 #include<malloc.h> 4 #include<stdlib.h> 5 6 #define LINK_INIT_SIZE 100 7 #define LISTINCREAMENT 10 8 #defi 阅读全文

posted @ 2020-04-20 15:15 seyOrd 阅读(347) 评论(0) 推荐(0)