vote up 12 vote down star
1

Why are the runtime heap used for dynamic memory allocation in C-style languages and the data structure both called "the heap"? Is there some relation?

flag

I was wondering this today while studying data structures. – MitMaro Nov 9 at 4:16
Go to an English dictionary and count the number of entries under "Run". How many of the 40+ entries apply to computers? :) – jmucchiello Nov 10 at 1:22

8 Answers

vote up 7 vote down check

Donald Knuth says (The Art of Computer Programming, Third Ed., Vol. 1, p. 435):

Several authors began about 1975 to call the pool of available memory a "heap."

He doesn't say which authors and doesn't give references to any specific papers, but does say that the use of the term "heap" in relation to priority queues is the traditional sense of the word.

link|flag
Pool would be a better name than heap. – Kinopiko Nov 9 at 5:22
vote up 9 vote down

They have the same name but they really aren't similar (even conceptually). A memory heap is called a heap in the same way you would refer to a laundry basket as a "heap of clothes". This name is used to indicate a somewhat messy place where memory can be allocated and deallocated at will. The data structure (as the Wikipedia link you reference points out) is quite different.

link|flag
2  
Yes, I think that's rather the point on which he's basing his question: they are different. So why are they called the same thing -- is there some underlying relation. – Sean Owen Nov 9 at 4:25
3  
The way I interpreted this answer is "no, there is no underlying relation", so it answers the question. – Laurence Gonsalves Nov 9 at 4:52
Andrew is answering that. There's no relation. Just a coincidence. The memory heap is more true to the common usage since memory is allocated as if a "heap of clothes". The data structure however demanded a larger stretch of imagination. And this becomes a rather much more interesting "why". The name comes from the fact nodes are arranged by their key and a parent node key is always >= than its child node. – Krugar Nov 9 at 4:57
vote up 6 vote down

The name collision is unfortunate, but not all that mysterious. Heap is a small, common word used to mean a pile, collection, group, etc. The use of the word for the data structure pre-dates (I'm pretty sure) the name of the pool of memory. In fact, pool would have been a much better choice for the latter, in my opinion. Heap connotes a vertical structure (like a pile), which fits with the data structure, but not the memory pool.

Heap the data structure dates back to the mid-60s; heap the memory pool, the early-70s. The term heap (meaning memory pool) was used at least as early as 1971 by Wijngaarden in discussions of Algol.

link|flag
Yes, but a heap also implies disorder and memory heaps are generally disordered. The data structure heap is extremely well ordered. So again there's an equal mismatch going the other way based on the common definition of heap. – jmucchiello Nov 10 at 1:24
vote up 2 vote down

Actually, reading about the way memory is allocated (see Buddy Blocks) reminds me of a heap in data structures.

link|flag
vote up 2 vote down

We asked this question of some of our Computer Science professors and they did not have the answer as well. Kind of mysterious actually...

link|flag
1  
Welcome to Stack Overflow. Although you are encouraged to answer questions as well as ask them, perhaps this wasn't the best choice for your first answer since it doesn't actually answer the question. It would have been more appropriate as a comment (although you don't get to comment on arbitrary posts until you get a high enough "reputation"). – Rob Kennedy Nov 9 at 7:27
Ditto. 40 left to go... – pst Nov 9 at 7:53
vote up 1 vote down

Perhaps the first memory heap implemented was managed by a heap structure?

link|flag
5  
That hypothesis doesn't seem at all obvious - how is a heap (the data structure) at all useful for maintaining a heap (the dynamic memory region)? – Keith Randall Nov 9 at 4:42
-1. I would prefer an authoritative statement with evidence instead of what's obviously just a guess. – Rob Kennedy Nov 9 at 7:19
Highly unlikely. There seems to be no good reason to use a heap (the data structure) to manage the heap (the pool of free memory). – Jason Nov 9 at 20:01
vote up 1 vote down

IMO it is merely an accident/coincidence that these two entirely unrelated things have the same name. Its like graph and graph.

link|flag
The two graphs can though somehow be related. Imagine the graph of a function as follows: The tuple domain,range) is a vertex and a edge connects two such vertices – Amit Nov 9 at 5:46
@Amit: For continuous graphs that would mean an infinite number of vertices. This is ok, but that also makes the concept of edges between the vertices meaningless. In the graph of the function f(x)=x*2, is there an edge between (0,0) and (1,2)? If yes, how about (0,0) and (0.5,1)? (0,0) and (0.25,0.5)? There is no way of having the concept of an edge between vertices, so this is not really a graph. – MAK Nov 9 at 19:28
vote up 0 vote down

duplicate question? http://stackoverflow.com/questions/756861/whats-the-relationship-between-a-heap-and-the-heap

link|flag
Shouldn't this be a comment? – Murali VP Nov 10 at 1:20
yeah, I don't have enough points to do that – queBurro Nov 10 at 12:52

Your Answer

Get an OpenID
or

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