Arvin_JIN

2018年4月30日 #

单链表基本操作

摘要: 1 //单链表基本操作 2 #include 3 using namespace std; 4 5 //#define ElemType int 6 typedef int ElemType; 7 8 typedef struct LNode { 9 ElemType data; 10 struct LNode *next; // ... 阅读全文

posted @ 2018-04-30 21:50 Arvin_JIN 阅读(244) 评论(0) 推荐(0) 编辑

顺序表基本操作

摘要: 记录简单的顺序表操作 阅读全文

posted @ 2018-04-30 21:48 Arvin_JIN 阅读(198) 评论(0) 推荐(0) 编辑

导航