Pergunta de entrevista da empresa Microsoft

Implement a stack with two queues

Resposta da entrevista

Sigiloso

8 de dez. de 2018

Just have a queue for popping and another one for pushing, if the queue for popping is empty then just move everything from the pushing queue to the popping queue.