上一页 1 ··· 8 9 10 11 12

2019年11月3日

摘要: 1 #include <stdio.h> //增+删+改+查+初始化+输出 2 #include <stdlib.h> 3 typedef struct Link { 4 int elem; 5 struct Link *next; 6 }link; 7 link * initLink(); 8 / 阅读全文

posted @ 2019-11-03 19:04 choco莉特 阅读(1247) 评论(0) 推荐(0) 编辑

摘要: 1 #include<stdio.h> //增+删+改+初始化+输出 2 #include<stdlib.h> 3 #define MaxSize 10 此数决定了后面插入数据的多少,超过该数字输出顺序表的时候不是正确的数 4 typedef int ElementType; 5 struct Sq 阅读全文

posted @ 2019-11-03 19:02 choco莉特 阅读(3749) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12