摘要:
数据结构练习题 一、括号匹配(栈的使用) 1.顺序栈实现 #include "stdio.h" #define MaxSize 100 typedef char ElemType; struct Stack{ ElemType data[MaxSize]; int top; }; //初始化栈 vo 阅读全文
摘要:
数据结构六 一、关于线性表中栈的顺序存储和链式存储方式的实现方式 1.顺序存储 #include <stdio.h> #define MaxSize 10 //定义队列中元素的最大个数 typedef struct{ int data[MaxSize]; int front,rear;//队头指针和 阅读全文