Pergunta de entrevista da empresa Amazon

implement a queue from stack

Respostas da entrevista

Sigiloso

18 de fev. de 2012

Agreed - an implementation class Queue { private: stack q; stack s; public: push(int x) { s.push(); }; int pop() { if(q.empty()) { while(x = s.pop()) q.push(); }; return q.pop(); }; };

2

Sigiloso

16 de fev. de 2012

using two stacks. one as head of the queue, the other as the tail of the queue