Question d’entretien chez Bloomberg

Try to use two stacks to function like a queue

Réponse à la question d'entretien

Utilisateur anonyme

15 oct. 2013

Put all elements in one stack. Then pop out the elements in push to another stack. when u pop out from the second stack, it will be FIFO with respect to original order of elements.

1