Stack
Term side of the Card
Topic: Basics
Unit title: Stack
Categories: Data structure
Explanation side of the Card
Explanation: The collection that follows the LIFO (last-in, first-out) principle. Elements are added at the end and removed from the end, similar to a real-life stack. It commonly used for depth-first search and backtracking algorithms.