摘要: 链表的定义: 相关术语: 链表示意图: 链表所需参数 链表属于离散存储 阅读全文
posted @ 2018-02-04 18:31 马鞍山 阅读(101) 评论(0) 推荐(0) 编辑
摘要: #include //用户自定义的数据类型取一个新的名字 typedef int JJ; //为 int 再重新多取一个名字,JJ 等价于 int //定义一个结构体 struct Student { int sid; char name[200]; char sex; }; int main(void) { // struct Student... 阅读全文
posted @ 2018-02-04 18:08 马鞍山 阅读(239) 评论(0) 推荐(0) 编辑