What is the difference between a PUSH and a POP?
3 years ago
Data Structure and Algorithm
Pushing and popping applies to the way data is stored and retrieved in a stack. A push denotes data being added to it, meaning data is being “pushed” into the stack. On the other hand, a pop denotes data retrieval, and in particular, refers to the topmost data being accessed.

Sujan Bk
Jan 9, 2022