![]() |
VOOZH | about |
Stack is a linear data structure that follows the Last-In/First-Out (LIFO) principle.
Python does not have a built-in stack type, but stacks can be implemented using different data structures. Below are some common ways to implement a stack:
1. Using a List: Python lists support stack operations using built-in methods like append() and pop().
Example: Here, elements are added to the stack using append() and removed using pop() in LIFO order.
['a', 'b', 'c'] c b
2. Using collections.deque:deque class from the collections module provides fast insertion and deletion operations. It supports stack behavior using append() and pop() methods. deque is usually faster than lists for large data operations.
Example: Here, a deque is used to perform stack operations efficiently.
Output
deque(['a', 'b', 'c'])
c
b
3. Using queue.LifoQueue: LifoQueue from the queue module implements a stack using the LIFO principle. It is thread-safe which makes it useful in multi-threaded programs. However, it is generally slower than lists and deque.
Example: Here, elements are inserted using put() and removed using get().