Answers

Question and Answer:

  Home  Data Structures

⟩ What is the difference between ARRAY and STACK in Data Structures?

STACK follows LIFO. Thus the item that is first entered would be the last removed.

In array the items can be entered or removed in any order. Basically each member access is done using index. No strict order is to be followed here to remove a particular element.

 135 views

More Questions for you: