up vote 26 down vote favorite
4
share [g+] share [fb]

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?

link|improve this question

I was wondering this today while studying data structures. – MitMaro Nov 9 '09 at 4:16
2  
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 '09 at 1:22
possible duplicate of What's the relationship between "a" heap and "the" heap? – RCIX Jun 14 '10 at 4:19
feedback

6 Answers

up vote 14 down vote accepted

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|improve this answer
Pool would be a better name than heap. – user181548 Nov 9 '09 at 5:22
Interesting. Someone should ask him if he remembers which authors. – Amigable Clark Kant Oct 18 '11 at 9:37
feedback

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|improve this answer
3  
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 '09 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 '09 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. – Alexandre Bell Nov 9 '09 at 4:57
feedback

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.

Possibly the earliest use of heap as a data structure is found seven years earlier in
Williams, J. W. J. 1964. "Algorithm 232 - Heapsort", Communications of the ACM 7(6): 347-348

link|improve this answer
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 '09 at 1:24
It's always introduced as the opposite of stack which should suffice to explain the name IMO. – reinierpost Jan 7 '11 at 13:00
It's not coincidence -- the free list can be implemented as a priority queue via a binomial heap. – Heath Hunnicutt Jun 8 '11 at 20:26
@jmucchiello: a heap of logs (see picture) is well ordered and tree-resembling. This is the origin of the data structure's name according to one of my undergraduate textbooks. – gioele Oct 28 '11 at 10:56
feedback

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

link|improve this answer
feedback

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

link|improve this answer
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 '09 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 '09 at 19:28
feedback

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

link|improve this answer
6  
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 '09 at 4:42
2  
-1. I would prefer an authoritative statement with evidence instead of what's obviously just a guess. – Rob Kennedy Nov 9 '09 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 '09 at 20:01
feedback

Your Answer

 
or
required, but never shown

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