摘要: #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)
摘要: #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)
摘要: #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)
摘要: #include <stdio.h> #include <stdlib.h> typedef int ElemType; //////////////////////////////////////////// //定义结点类型 typedef struct DulNode { ElemType d 阅读全文
posted @ 2022-03-13 17:23 zhichutian 阅读(151) 评论(0) 推荐(0)