#define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 #include<stdio.h> #include<stdlib.h> typedef int SElemType; typedef struct{ SElemType *base; SElemType *top; int stacksize; }SqStack; int InitStack(SqStack &S){ S.base = (SElemType*)malloc(STACK_INIT_SIZE*sizeof(SElemType)); if(!S.base) exit(-2); S.top = S.base; S.stacksize = STACK_INIT_SIZE; return 1; } int GetTop(SqStack S,SElemType &e) { if(S.top == S.base) return -1; e = *(S.top-1); return 1; } int Push(SqStack &S,SElemType e) { if(S.top-S.base >= S.stacksize){ S.base = (SElemType*)realloc(S.base,(S.stacksize+STACKINCREMENT)*sizeof(SElemType)); if(!S.base) exit(-2); S.top = S.base + S.stacksize; S.stacksize += STACKINCREMENT; } *S.top++=e; return 1; } int Pop(SqStack &S,SElemType &e) { if(S.top == S.base) return -1; e = *--S.top; return 1; } void Show(SqStack S) { if(S.top == S.base) printf("空栈!\n"); else{ SElemType *p = S.top - 1; while(p+1!=S.base) { printf(">%d\n",*p); p--; } } } int main() { SqStack s1; InitStack(s1); Push(s1,5); Push(s1,3); Push(s1,2); int i; GetTop(s1,i); printf("%d",i); printf("------------------\n"); Show(s1); }
时间: 2024-12-23 11:50:36