Pregunta de entrevista de Amazon

implement a queue from stack

Respuestas de entrevistas

Anónimo

18 de feb 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

Anónimo

16 de feb de 2012

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