随笔分类 -  数据结构

C语言实现的数据结构
摘要:// Code file created by C Code Develop // 顺序栈 #include "ccd.h" #include "stdio.h" #include "stdlib.h" #define MaxSize 10 #define OK 1 #define ERROR 0 阅读全文
posted @ 2021-09-26 21:47 def_Class 阅读(89) 评论(0) 推荐(0)
摘要:// Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" #define InitSize 10 typedef struct { int *data; int Max 阅读全文
posted @ 2021-09-26 21:44 def_Class 阅读(52) 评论(0) 推荐(0)
摘要:// Code file created by C Code Develop #include "ccd.h"#include "stdio.h"#include "stdlib.h"#define OK 1#define ERROR 0//思考: 如果用cpp即C++编码会不会能够编译成功type 阅读全文
posted @ 2021-09-26 21:43 def_Class 阅读(47) 评论(0) 推荐(0)