1234
bool Stack::empty() const { return (myTop == -1); }
bool Stack::full() const { return (myTop == 128); }