会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
print("Accepted!")
龙潜沧海听春雷
首页
新随笔
联系
管理
2025年9月22日
数据结构-单链表基础2
摘要: 0.基本结构和函数 前置内容,可以访问数据结构-单链表基础1 点击查看代码 typedef int ElemType; typedef struct LNode { ElemType data; struct LNode *next; } LNode, *linkList; void CreateL
阅读全文
posted @ 2025-09-22 12:11 薄荷味小哀
阅读(53)
评论(1)
推荐(0)
2025年9月16日
数据结构-单链表基础1
摘要: 0.基本结构和函数 点击查看代码 typedef int ElemType; typedef struct LNode { ElemType data; struct LNode *next; } LNode, *linkList; void PrintList(linkList L) { link
阅读全文
posted @ 2025-09-16 00:16 薄荷味小哀
阅读(118)
评论(0)
推荐(1)
公告