Question d’entretien chez Amazon

implement a queue from stack

Réponses aux questions d'entretien

Utilisateur anonyme

18 févr. 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

Utilisateur anonyme

16 févr. 2012

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