In This Session, You Will Learn To:: Objectives
In This Session, You Will Learn To:: Objectives
In This Session, You Will Learn To:: Objectives
Objectives
7 7
7 7
6 6
6 6
6 6
6 6
7 7
7 7
6 6
6 6
6 6
6 6
What
A is is
stack a Stack ?
a collection of data items that can be accessed at
only one end, called top.
Items can be inserted and deleted in a stack only at the top.
The last item inserted in a stack is the first one to be
deleted.
Therefore, a stack is called a Last-In-First-Out (LIFO) data
structure.
PUSH:are
There It istwo
thebasic
process
operations
of inserting
that aare
newperformed
element on the
stacks:
top of a stack.
PUSH
POP
Push an
Element 1
Empty Stack
Push an
Push an
Element 32
Element
3
2
1
POP an
Element
3
3 2
2
1
Answer:
LIFO
List down some real life examples that work on the LIFO
principle.
Answer:
Pile of books: Suppose a set of books are placed one over
the other in a pile. When you remove books from the pile, the
topmost book will be removed first. Similarly, when you have
to add a book to the pile, the book will be placed at the top of
the pile.
Pile of plates: The first plate begins the pile. The second plate
is placed on the top of the first plate and the third plate is
placed on the top of the second plate, and so on. In general, if
you want to add a plate to the pile, you can keep it on the top
of the pile. Similarly, if you want to remove a plate, you can
remove the plate from the top of the pile.
Bangles in a hand: When a person wears bangles, the last
bangle worn is the first one to be removed.
Ver. 1.0 Session 10
Data Structures and Algorithms
Implementing Stacks
{(a + b) × (c + d) + (c × d)]}
Consider an example.
Suppose the expression is:
{(a + b) × (c + d) + (c × d)]}
Scan the expression from
left to right.
The first entry to be
scanned is ‘{’, which is a left
parenthesis.
Push it into the stack.
{
{(a + b) × (c + d) + (c × d)]}
The next entry to be
scanned is ‘(’, which is a left
parenthesis.
Push it into the stack.
The next entry is ‘a’, which
is an operand. Therefore, it
is discarded.
The next entry is ‘+’, which
is an operator. Therefore, it
is discarded. (
{
The next entry is ‘b’, which
is an operand. Therefore, it
is discarded.
{(a + b) × (c + d) + (c × d)]}
The next entry to be
scanned is ‘)’, which is a
right parenthesis
POP the topmost entry from
the stack.
Match the two brackets.
( )
Brackets Matched
(
{
{(a + b) × (c + d) + (c × d)]}
The next entry to be
scanned is ‘)’, which is a
right parenthesis.
POP the topmost element
from the stack.
Match the two brackets.
( )
Brackets Matched
(
{
{(a + b) × (c + d) + (c × d)]}
The next entry to be
scanned is ‘)’, which is a
right parenthesis.
POP the topmost element
from the stack.
Match the two brackets.
( )
Brackets Matched
(
{
{(a + b) × (c + d) + (c × d)]}
The next entry to be
scanned is ‘]’, which is a
right parenthesis.
POP the topmost element
from the stack.
Match the two brackets.
{ ]
A
Tostack is similar
implement to a list
a stack usingin which insertion and deletion is
an array:
allowed onlyanatarray:
Declare one end.
Therefore, similar to a //list,
int Stack[5]; stack size
Maximum can needs
be implemented using
to be specified in
both arrays and linked lists. // advance
Declare a variable, top to hold the index of the topmost
element in the stacks:
int top;
Initially, when the stack is empty, set:
top = –1
PUSH an element 3
0 1 2 3 4
Stack
1. Increment top by 1.
PUSH an element 3
0 1 2 3 4
Stack 10
1. Increment top by 1.
PUSH an element 3
0 1 2 3 4
Stack 10
top = 0
1. Increment top by 1.
PUSH an element 3
0 1 2 3 4
Stack 3 10 Item pushed
top = 0
1. Increment top by 1.
PUSH an element 8
0 1 2 3 4
Stack 3 10
top = 0
1. Increment top by 1.
PUSH an element 8
0 1 2 3 4
Stack 3 10
top = 0
top = 1
1. Increment top by 1.
PUSH an element 8
0 1 2 3 4
Stack 3 10 8 Item pushed
top = 1
1. Increment top by 1.
PUSH an element 5
0 1 2 3 4
Stack 3 10 8
top = 1
1. Increment top by 1.
PUSH an element 5
0 1 2 3 4
Stack 3 10 8
top = top
1 =2
1. Increment top by 1.
PUSH an element 5
0 1 2 3 4
Stack 3 10 8 5 Item pushed
top = 2
1. Increment top by 1.
PUSH an element 1
0 1 2 3 4
Stack 3 10 8 5
top = 2
1. Increment top by 1.
PUSH an element 1
0 1 2 3 4
Stack 3 10 8 5
top = 2
top = 3
1. Increment top by 1.
PUSH an element 1
0 1 2 3 4
Stack 3 10 8 5 1 Item pushed
top = 3
1. Increment top by 1.
PUSH an element 9
0 1 2 3 4
Stack 3 10 8 5 1
top = 3
1. Increment top by 1.
PUSH an element 9
0 1 2 3 4
Stack 3 10 8 5 1
top = 3top = 4
1. Increment top by 1.
PUSH an element 9
0 1 2 3 4
Stack 3 10 8 5 1 9 Item pushed
top = 4
1. Increment top by 1.
PUSH an element 2
0 1 2 3 4
Stack 3 10 8 5 1 9
top = 4
1. Increment top by 1.
PUSH an element 2
0 1 2 3 4
Stack 3 10 8 5 1 9
top = 4top = 5
1. Increment top by 1.
PUSH an element 2
0 1 2 3 4
Stack 3 10 8 5 1 9 Stack overflow
top = 5
Theavoid
To stackthe
has beenoverflow,
stack implemented
you 1. Increment
If top = MAX top–by1: 1.
a. Display “Stack
in an to
need array of size
check 5. stack full
for the 2. Store the
Full”value to be
condition
Therefore,before pushing
you cannot an element
store more pushed
b. Exitat index top in
the array. Top now
into
thanthe stack. in the stack.
5 elements 2. contains
Increment the top
index
by 1of the
Let us modify the algorithm to check topmost element.
3. Store the value to be
for this condition. pushed at index top in
the array
0 1 2 3 4
Stack 3 10 8 5 1 9
Answer:
top
Writealgorithm
The an algorithm to implement
for POP
PUSH operation
operation the PUSH
isisas and POP
asfollows:
follows:
operations
1. Make a using
Allocate a Linked
variable/pointer
memory List.point
for the tmp
new node.to the topmost node.
2. Assign
Retrievevalue
the value
to thecontained
data field in
of the
the topmost
new node.node.
3. Make top
the next
pointfield
to the
of next
the new
nodenodein sequence.
point to top.
4. Release
Make topmemory
point to allocated
the new node.
to the node marked by tmp.
Problem Statement:
Write a program to implement a stack by using an array that
can store five elements.
Problem Statement:
Write a program to implement a stack by using a linked list.
Answer:
When a stack is implemented as a linked list, there is no upper
bound limit on the size of the stack. Therefore, there will be no
stack full condition in this case.
Answer:
2. At the beginning of the list
Problem Statement:
Write a program that accepts an infix expression, and then
converts it into a postfix expression. You can assume that the
entered expression is a valid infix expression.