Cheet 2 栈

struct SqStack
{
    int *base;
    int *top;
    int stacksize;
};
*S.top++ = e;

e = *--S.top;

你可能感兴趣的:(Cheet 2 栈)