摘要:
#include <stdio.h> #include <stdlib.h> #define MAXSIZE 6 typedef int QElemType; typedef struct { QElemType *base; int front; int rear; }SqQueue; SqQue 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> typedef int QElemType; typedef struct QNode{ QElemType data; struct QNode *next; }QNode; typedef struct{ QNode 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> typedef int ElemType; typedef struct StackNode{ ElemType data; struct StackNode *next; }StackNode; StackNode *I 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> #define MAXSIZE 100 typedef int SElemType; typedef struct { SElemType *base; SElemType *top; int stackSize; }Sq 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode; LNode *InitList(LNode *L 阅读全文