Data Structure Unit-2
Data Structure Unit-2
INTRODUCTION TO STACK
Stack
It is a linear data structure that follows a particular order in which the operations
are performed.
To implement the stack, it is required to maintain the pointer to the top of the
stack, which is the last element to be inserted because we can access the
elements only on the top of the stack.
Stack
Push:
Adds an item to the stack. If the stack is full, then it is said to be an Overflow
condition.
Algorithm for push:
begin
if stack is full
return
endif
else
increment top
stack[top] assign value
end else
end procedure
Pop:
Removes an item from the stack. The items are popped in the reversed order in
which they are pushed. If the stack is empty, then it is said to be
an Underflow condition.
Complexity Analysis:
• Time Complexity
Operations Complexity
push() O(1)
pop() O(1)
isEmpty() O(1)
size() O(1)
Types of Stacks:
• Fixed Size Stack: As the name suggests, a fixed size stack has a fixed
size and cannot grow or shrink dynamically. If the stack is full and an
attempt is made to add an element to it, an overflow error occurs. If
the stack is empty and an attempt is made to remove an element from
it, an underflow error occurs.
• Dynamic Size Stack: A dynamic size stack can grow or shrink
dynamically. When the stack is full, it automatically increases its size
to accommodate the new element, and when the stack is empty, it
decreases its size. This type of stack is implemented using a linked
list, as it allows for easy resizing of the stack.
In addition to these two main types, there are several other variations of Stacks,
including:
1. Infix to Postfix Stack: This type of stack is used to convert infix
expressions to postfix expressions.
2. Expression Evaluation Stack: This type of stack is used to evaluate
postfix expressions.
3. Recursion Stack: This type of stack is used to keep track of function
calls in a computer program and to return control to the correct
function when a function returns.
4. Memory Management Stack: This type of stack is used to store the
values of the program counter and the values of the registers in a
computer program, allowing the program to return to the previous
state when a function returns.
5. Balanced Parenthesis Stack: This type of stack is used to check the
balance of parentheses in an expression.
6. Undo-Redo Stack: This type of stack is used in computer programs to
allow users to undo and redo actions.
Applications of the stack:
• Infix to Postfix /Prefix conversion
• Redo-undo features at many places like editors, photoshop.
• Forward and backward features in web browsers
• Used in many algorithms like Tower of Hanoi, tree traversals, stock
span problems, and histogram problems.
• Backtracking is one of the algorithm designing techniques. Some
examples of backtracking are the Knight-Tour problem, N-Queen
problem, find your way through a maze, and game-like chess or
checkers in all these problems we dive into someway if that way is not
efficient we come back to the previous state and go into some another
path. To get back from a current state we need to store the previous
state for that purpose we need a stack.
• In Graph Algorithms like Topological Sorting and Strongly Connected
Components
• In Memory management, any modern computer uses a stack as the
primary management for a running purpose. Each program that is
running in a computer system has its own memory allocations
• String reversal is also another application of stack. Here one by one
each character gets inserted into the stack. So the first character of the
string is on the bottom of the stack and the last element of a string is
on the top of the stack. After Performing the pop operations on the
stack we get a string in reverse order.
• Stack also helps in implementing function call in computers. The last
called function is always completed first.
• Stacks are also used to implement the undo/redo operation in text
editor.
Implementation of Stack:
A stack can be implemented using an array or a linked list. In an array-based
implementation, the push operation is implemented by incrementing the index
of the top element and storing the new element at that index. The pop operation
is implemented by decrementing the index of the top element and returning the
value stored at that index. In a linked list-based implementation, the push
operation is implemented by creating a new node with the new element and
setting the next pointer of the current top node to the new node. The pop
operation is implemented by setting the next pointer of the current top node to
the next node and returning the value of the current top node.
push(stack, 10);
push(stack, 20);
push(stack, 30);
return 0;
}
Output
10 pushed into stack
20 pushed into stack
30 pushed into stack
30 Popped from stack
Top element is : 20
Elements present in stack : 20 10
return popped;
}
int main()
{
struct StackNode* root = NULL;
push(&root, 10);
push(&root, 20);
push(&root, 30);
return 0;
}
Output
10 pushed to stack
20 pushed to stack
30 pushed to stack
30 popped from stack
Top element is 20
Elements present in stack : 20 10