会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
交个朋友吧
Pam
Hang Shao
首页
新随笔
管理
2020年3月10日
数据结构:链表
摘要: 单链表 插入结点 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)
公告