DISH Interview Question

What is the difference between a stack and a queue?

Interview Answer

Anonymous

Nov 14, 2017

A stack is a LIFO structure while a queue is a FIFO structure. Both can have their underlying implementation via a linked list.