Re: Needed C/C++ code for memory manager with following reqirements
CANCER.0707@gmail.com wrote:
The problem statement is as follows
Create a library that creates pools of memory of different sizes.For
e.g. one pool of 32 byte size, another pool of 64 byte size and so
on.Create an array of pointers and store the pointer to each pool in
this array.Each pool maintains one link list of free pointers and
another link list of allocated pointers.Whenever, the main program
requests for a memeory of say, size 32 bytes, a pointer is returned
from the free list of 32-byte pool and that pointer is moved to
allocated list.Whenever the main program requests for freeing this
memory, the pointer will be returned back to the 32 byte size free
pool.Write both the memory manager and main program that uses it.
We will not do your homework for you. Then you would not learn.
So, try writing it. Take it a step at a time.
First do step one.
Create a library that creates pools of memory of different sizes.
So how would you do that? Well, you would need pointers to the memory, and
need to allocate the memory with either new or malloc. Do you know how to
allocate memory? Have you ever used new before? If not, read your text
book.
Once you manage to get a pointer that points to allocated memory go to step
2.
Create an array of pointers and store the pointer to each pool in this
array.
Do you know what an array is? Do you know how to create one? You would
need to create an array of pointers.
Now step three.
Each pool maintains one link list of free pointers and another link list of
allocated pointers.
I *think* that the link list would point to the elements in your array of
pointers. I.E. 0 for element 0 of the array (first one), 1 for the 2nd,
etc... Create the linked lists Test them.
Now do step four.
Whenever, the main program requests for a memeory of say, size 32 bytes, a
pointer is returned from the free list of 32-byte pool and that pointer is
moved to allocated list.
Write an interface for that.
And finally do step 5 and your done.
Write both the memory manager and main program that uses it.
Just write a program that uses your linked list.
Do it one step at a time, read your textbook on things you don't remember
how to do or things you slept through in the class.
When you get stuck, show your code, what you are trying to do, what is not
working, and we will help you.
--
Jim Langston
tazmaster@rocketmail.com