vote up 3 vote down star
1

Possible Duplicate:
What is the origin of the term “heap” for the free store?

Why is the heap called the heap? I mean the bit of memory which we dynamically allocate bits of.

flag

closed as exact duplicate by Bill the Lizard Aug 6 at 18:12

1 Answer

vote up 0 vote down

I don't have a citation for this, but I've always believed it derives from "a place to put stuff; a bit like the stack only less organised".

A stack has strict rules about where you add and remove things, but a heap doesn't.

link|flag

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