摘要: //第三章 栈的基本功能实现 // #include <stdio.h> #include <stdlib.h> #include <time.h> #include <stdbool.h> #define ElemType int #define MaxSize 50 // 函数声明区域 type 阅读全文
posted @ 2020-09-30 07:43 RougeBW 阅读(214) 评论(0) 推荐(0)
摘要: // #include <stdio.h> #include <stdlib.h> #include <time.h> #define ElemType int #define MaxSize 50 // 函数声明区域 int main() { time_t t; srand((unsigned) 阅读全文
posted @ 2020-09-30 06:48 RougeBW 阅读(132) 评论(0) 推荐(0)
摘要: //第二章线性表的记录 // main.c // ds_excecise // // Created by rouge s on 2020/9/28. // #include <stdio.h> #include <stdlib.h> #include <time.h> #define ElemTy 阅读全文
posted @ 2020-09-30 06:32 RougeBW 阅读(83) 评论(0) 推荐(0)