104
void StackPush(int v) { stackObject.top++; int i = stackObject.top; stackObject.item[i] = v; }