Question
CA0205 Memory Q Stack Instructions Make a MemoryQ class and a driver program ( main ) MemoryQ has a private data structure ( an integer
CA0205 Memory Q Stack | |
Instructions | |
Make a MemoryQ class and a driver program ( main ) MemoryQ has a private data structure ( an integer array of size 10) and private variable Top and Bottom: Top is having the array index of empty array cell on which one can write a new datum. Bottom is having array index of array cell that has least recently written datum. Further MemoryQ has two public method named read and write. Read will get the datum indicated by Bottom, once read bottom is advanced, meaning bottom++ Write will write datum on the cell indicated by Top, advance Top after writing. test your MemoryQ from driver program |
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