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
Get step-by-step solutions from verified subject matter experts
