随笔分类 -  计算机基础

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

posted @ 2019-11-03 19:08 choco莉特 阅读(591) 评论(0) 推荐(0)

摘要: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莉特 阅读(1353) 评论(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莉特 阅读(3845) 评论(0) 推荐(0)