Question
Write a C program(Menu driven) to implement n stacks using a single 1-D array containing m locations with following prototypes , i) push(int i, int
Write a C program(Menu driven) to implement n stacks using a single 1-D array containing m locations with following prototypes , i) push(int i, int item, STACK *S); //pushing an item on ith stack ii) pop(int i, STACK *S);//poping an item from ith stack iii) display(S) // displaying all n stack contents For the STACK structure, the members boundary[i] and top[i] represents boundary and top respectively for the ith stack along with element represented by other member. While pushing if the particular stack is full, and if there is space available elsewhere in the array of m locations, it should shift the stacks so that space is allocated to the full stack.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started