Can we write a myStack class that will be implemented in terms of std::stack so that it offers all of its member functions plus an additional feature: iterators?
I tried some options, but they seem to me not quite optimal.
Can we write a myStack class that will be implemented in terms of std::stack so that it offers all of its member functions plus an additional feature: iterators?
I tried some options, but they seem to me not quite optimal.
Copyright © 2021 Jogjafile Inc.
I will show you the way I did it.
from: https://cplusplus.com/reference/stack/stack/
The stack "underlying container" is deque by default, but can be a vector or a list as well. It's important to know this to answer your question because we are going to use the iterator of the underlying container to make MyStack iterable.
this is the template for the stack class defined in stl_stack.h:
and this is how I implemented MyStack:
now you can see that
this->c
is the encapsulated object of the underlying container, so you can use it to access the container methods and add more functionalities to your stack