vote up 0 vote down star

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?

flag

1  
That's a pretty standard interview question, has it really never been asked here before? – Carl Norum Oct 26 at 5:07
Your post is tantamount to viral marketing given that you have linked to NVIDIA's site. Also, try Google. – dirkgently Oct 26 at 5:08
2  
Duplicate: stackoverflow.com/questions/732617/… – Greg Hewgill Oct 26 at 5:10
1  
Oh, and if you don't have to implement free(), then it's pretty easy. :) – Greg Hewgill Oct 26 at 5:11
@dirkgently I am not an employee or HR manager at NVIDIA.Why would I do marketing for NVIDIA.That was just for those who don't know NVIDA. – Ravi Oct 26 at 5:11
show 3 more comments

closed as exact duplicate by Greg Hewgill, dirkgently, Naveen, aJ, Ravi Oct 26 at 5:22

5 Answers

vote up 3 vote down check

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
No I didn't read it. – Ravi Oct 26 at 5:14
And thanks for the link. – Ravi Oct 26 at 5:22
Why did you link to it if you hadn't read it? – Greg Hewgill Oct 26 at 5:45
1  
Maybe he thought it was an EULA :-) – paxdiablo Oct 26 at 6:02
@pax: touché. =) – Stephen Canon Oct 26 at 14:37
vote up 0 vote down

For Windows, it can be implemented using HeapAlloc() function.

link|flag
That's true, but that totally misses the point of the question. HeapAlloc() already is a memory allocation function. If you answered that in a job interview, you might get a point for thinking to reuse existing code, but the interviewer will just turn around and ask, "Okay, how would you implement HeapAlloc()?" – Greg Hewgill Oct 26 at 5:47
Yeah, anyone can write a malloc() if they have access to the underlying malloc(). I think the point is to build something out of smaller or simpler components. – paxdiablo Oct 26 at 6:01
vote up 1 vote down

This is terribly system dependent. For *nix based systems look up sbrk.

link|flag
Or mmap - I think BSD (and therefore OSX) uses it instead. – David Oct 26 at 5:08

Not the answer you're looking for? Browse other questions tagged or ask your own question.