摘要: 链表: 链表开头: struct list{ int data; struct list *next;};typedef struct list single; 创建链表节点的流程: (1)给当前的每个节点的数据结构配置定量的空间大小 struct list *node = malloc(sizeo 阅读全文
posted @ 2020-07-10 22:18 不详·Christina 阅读(114) 评论(0) 推荐(0)