会员
周边
新闻
博问
闪存
众包
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
一度です
博客园
首页
新随笔
联系
订阅
管理
2022年3月31日
跳跃游戏(C语言实现)
摘要: #include <stdio.h> #include <stdlib.h> void true() { printf("ture"); } void false() { printf("false"); } int main(void) { int nums[5] = {0}; printf("请
阅读全文
posted @ 2022-03-31 18:50 一度です
阅读(333)
评论(0)
推荐(0)
2022年3月16日
伪链表的相关操作
摘要: #include <stdio.h>#include <stdlib.h> struct Node{ int ShuJu; //数据 struct Node* pNext; //连接下一个节点的地址}; void Look_ShuJu(struct Node* pHead); //查看数据struc
阅读全文
posted @ 2022-03-16 21:47 一度です
阅读(67)
评论(0)
推荐(0)
公告