摘要: 单链表结构定义 1 //注意:所有对链表的结点操作都用变量节点pMove来完成,实现灵活遍历等使用 2 #include <stdio.h> 3 #include <stdlib.h> 4 #include <string.h> 5 6 typedef char elemType; 7 typede 阅读全文
posted @ 2020-05-12 18:07 YOLO-in-the-sun 阅读(367) 评论(0) 推荐(0) 编辑