摘要: #define Maxisize 10 typedef struct{ char data[Maxsize]; int top; }SqStack; void InitStack(SqStack &S) bool StackEmpty(SqStack S) bool Push(SqStack &S, 阅读全文
posted @ 2020-05-02 22:39 iiiiiki 阅读(214) 评论(0) 推荐(0)
摘要: typedef struct LinkNode{ //链式队列结点 int data; struct LinkNode *next; }LinkNode; typedef struct{ //链式队列 LinkNode *front,*rear; //队列头指针和尾指针 }LinkQueue; vo 阅读全文
posted @ 2020-05-02 21:45 iiiiiki 阅读(188) 评论(0) 推荐(0)