摘要: 刚刚学习完链表,总结了三种链表的创建方式,从表前插入节点,从表后插入节点和它的进化版😂 #include <stdio.h> #include <stdlib.h> typedef struct node { char data; struct node *next; }linkList; //下 阅读全文
posted @ 2019-09-22 20:55 FaryTormenta 阅读(994) 评论(0) 推荐(0)