47 views
in Business and Finance by (2.2k points)
what is Stacks

Please log in or register to answer this question.

2 Answers

0 votes
by (2.8k points)
A stack is a data structure that follows the Last In, First Out (LIFO) principle, where the last element added to the stack is the first to be removed. It has two main operations: pushing (adding) an element onto the stack and popping (removing) an element from the top of the stack. Stacks are commonly used in programming for tasks such as function calls, expression evaluation, and backtracking algorithms.
0 votes
by (7.8k points)
Stacks are a type of data structure in programming that follows the Last In, First Out (LIFO) principle. This means that the last element added to the stack is the first one to be removed. Think of it like a stack of plates - you can only remove the top plate before accessing the ones below. Stacks are commonly used in algorithms for tasks such as function calls, backtracking, and expression evaluation.

Related questions

2 answers
asked Jul 11, 2024 in Business and Finance by aishamirza (2.2k points)
1 answer
asked May 27, 2024 in Business and Finance by aishamirza (2.2k points)
3 answers
asked Mar 22, 2024 in Business and Finance by Muzzammil56 (7.8k points)
1 answer
asked Mar 22, 2024 in Business and Finance by Muzzammil56 (7.8k points)
...