Lockheed Martin Interview Question

What's the difference between a stack and a queue?

Interview Answer

Anonymous

Apr 18, 2015

Stack is a LIFO (last in first out) data structure. The associated link to wikipedia contains detailed description and examples. Queue is a FIFO (first in first out) data structure. The associated link to wikipedia contains detailed description and examples.