文章
3
标签
3
分类
3
首页
时间轴
闲言碎语
分类
留言板
友链
关于
等安好'Blog
我的第一篇博客文章
返回首页
搜索
首页
时间轴
闲言碎语
分类
留言板
友链
关于
我的第一篇博客文章
发表于
2025-08-12
|
更新于
2025-10-15
|
第一篇文章
|
浏览量:
我的第一篇博客文章
这是我的第一篇博客文章。
文章作者:
等安好
文章链接:
https://www.denganhao.top/posts/b24dd347.html
版权声明:
本博客所有文章除特别声明外,均采用
CC BY-NC-SA 4.0
许可协议。转载请注明来源
等安好'Blog
!
测试文章
不给糖果就捣蛋
wechat
alipay
上一篇
数据结构与算法(一)——顺序表和链表
顺序表增加元素1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677#include <stdio.h> #include <string.h>#define MAXSIZE 100typedef int ElemType;//顺序表定义typedef struct{ ElemType data[MAXSIZE]; int length;}SeqList;//顺序表初始化void initList(SeqList *L){ L->length = 0;;}//尾部添加元素int appendElem(SeqList *L, ElemType e){ if(L->length >= MAXSIZE){ prin...
下一篇
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment
等安好
Life is coding, I will debug it.
文章
3
标签
3
分类
3
Follow Me
公告
This is my Blog
目录
1.
我的第一篇博客文章
最新文章
数据结构与算法(一)——顺序表和链表
2025-09-28
我的第一篇博客文章
2025-08-12
Hello World
2025-08-10
✨ 有新文章啦! 👉
🍗点击食用🍔
搜索
数据加载中