What is the difference between stack and queue?

Asked 06-Apr-2022
Viewed 327 times

1 Answer


0

  • A stack is a linear data structure in which elements can only be added or removed from the top side of the list. The LIFO (Last In First Out) principle dictates that the element put last is the first to come out of a stack. Pushing an element into a stack is referred to as a push operation, while removing an element from a stack is referred to as a pop operation. With a pointer called top, we always maintain track of the last entry in the list in stack.
  • A queue is a linear data structure in which elements can only be inserted from one side of the list, called the back, and only deleted from the other side, called the front. The FIFO (First In First Out) principle governs the queue data structure, which means that the element placed first in the list is the first one withdrawn from the list. 


Read More: Explain the differences between a Thread and a Process?