随笔分类 -  数据结构

摘要:#include <stdio.h> #include <stdlib.h> #define MaxSize 50 typedef int ElemType; typedef struct{ ElemType data[MaxSize];//数组 int top; }SqStack; void In 阅读全文
posted @ 2021-04-23 21:33 福纨 阅读(81) 评论(0) 推荐(0)
摘要:#include <stdio.h> #include <stdlib.h> #define MaxSize 50 typedef int ElemType; //静态分配 typedef struct{ ElemType data[MaxSize]; int length; }SqList; // 阅读全文
posted @ 2021-03-11 18:03 福纨 阅读(104) 评论(0) 推荐(0)