请将下列栈类Stack补充完整。 class Stack{ private:int pList[100]; //int 数组,用于存放栈的元素int top; // 栈顶元素(数组下标) public:Stack():top(0){}void Push(const int &item); // 新元素item压入栈int Pop(void); // 将栈顶元素弹出栈 }; void Stack::Push(const int &item){if(top==99) // 如果找满,程序终止 exit(1);top++;// 栈顶指针增1 ______; } int Stack::Pop(){if(top<0)// 如果栈空,程序终止 exit(1);return pList[top--]; }