Stack();
Stack(const Stack& s);
T Top() const;
int Size() const;
bool Empty() const;
void Push(const T& value);
T Pop();
void MakeEmpty();
void Input(istream& in);
void Output(ostream& out) const;
void Validate() const;
istream& operator>>(istream& in, Stack& stack);
ostream& operator<<(ostream& out, const Stack& stack);
This page was last modified on Mar 28, 2001
URL: http://people.hsc.edu/faculty-staff/robbk/Coms262/Lectures/Stacks.html