Possible Duplicate:
I want to make my own Malloc
One of my friend was asked this question in a job interview at NVIDIA
Write your own malloc function.
How will you write it?
|
|
One of my friend was asked this question in a job interview at NVIDIA
How will you write it?
|
|||
closed as exact duplicate by Greg Hewgill, dirkgently, Naveen, aJ, Ravi Oct 26 at 5:22 |
|
|
Section 8.7 of K&R is a worked example of a storage allocator. It is not particularly clever but is worth studying if you have no idea where to start. For many years the standard malloc implementation on a lot of UNIX-derived systems was Doug Lea's malloc, which you can find online. |
||
|
|
|
|
For the purpose of an interview question, I would guess all they want is a basic buffer based allocation function. Probably the simplest, yet working example can be found in section 5.4 of K&R. |
||
|
|
|
|
The wikipedia article that you linked to actually has a rough outline of a few implementations. Did you read it? Do you have specific questions about them? This link from the wikipedia article has a pretty nice discussion of the workings of dlmalloc. |
||||||||||||
|
|
|
For Windows, it can be implemented using HeapAlloc() function. |
||||
|
|
|
This is terribly system dependent. For *nix based systems look up |
||
|
free(), then it's pretty easy. :) – Greg Hewgill Oct 26 at 5:11