交个朋友吧
摘要: 单链表 插入结点 p、q间插入 #include <stdio.h> #include <stdlib.h> //单链表定义 struct slist { int data; struct slist *next; }; //简单插入一个数【p、q间插入】 void main() { struct 阅读全文
posted @ 2020-03-10 14:52 PamShao 阅读(373) 评论(0) 推荐(0)