Stacks
Confused on how I would implement this for stacks
That depends on what you have. How much other implantation of your stack have you done?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
// stack::push/pop
#include <iostream> // std::cout
#include <stack> // std::stack
int main ()
{
std::stack<int> mystack;
for (int i=0; i<5; ++i) mystack.push(i);
std::cout << "Popping out elements...";
while (!mystack.empty())
{
std::cout << ' ' << mystack.top();
mystack.pop();
}
std::cout << '\n';
return 0;
}
|
Topic archived. No new replies allowed.