会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
zhidaobu
博客园
首页
新随笔
联系
订阅
管理
2022年4月5日
蓝桥杯 卡片
摘要: #include<stdio.h>#include<stdlib.h>int main(){ printf("sdada"); int a[9]; int i; for(i=0;i<=9;i++){ a[i]=2021; } int j; for(j=1;j<5000;j++){ int t=j;
阅读全文
posted @ 2022-04-05 16:30 zhichutian
阅读(46)
评论(0)
推荐(0)
2022年3月20日
链栈C语言
摘要: #include <stdio.h>#include <stdlib.h> typedef int eletype;typedef struct stacknode{ eletype data; struct stacknode *next;}stacknode,*linkstack;linksta
阅读全文
posted @ 2022-03-20 17:58 zhichutian
阅读(57)
评论(0)
推荐(0)
2022年3月16日
顺序栈C语言
摘要: #include <stdio.h> #include <stdlib.h> #define MAX_SIZE 5 /* 栈最大容量 */ #define Empty 0 /* 空 */ #define Full 1 /* 满 */ #define Avail -1 /* 可用 */ typedef
阅读全文
posted @ 2022-03-16 21:54 zhichutian
阅读(37)
评论(0)
推荐(0)
2022年3月13日
双向链表创建,插入,删除(纯C语言)
摘要: #include <stdio.h> #include <stdlib.h> typedef int ElemType; //////////////////////////////////////////// //定义结点类型 typedef struct DulNode { ElemType d
阅读全文
posted @ 2022-03-13 17:23 zhichutian
阅读(151)
评论(0)
推荐(0)
公告