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?
|
1
|
|||||
|
|
|
Donald Knuth says (The Art of Computer Programming, Third Ed., Vol. 1, p. 435):
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. |
||
|
|
|
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. |
||||||||||
|
|
|
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. |
|||
|
|
|
Actually, reading about the way memory is allocated (see Buddy Blocks) reminds me of a heap in data structures. |
||
|
|
|
|
We asked this question of some of our Computer Science professors and they did not have the answer as well. Kind of mysterious actually... |
||||||
|
|
|
Perhaps the first memory heap implemented was managed by a heap structure? |
||||||||
|
|
|
IMO it is merely an accident/coincidence that these two entirely unrelated things have the same name. Its like graph and graph. |
||||
|
|
|
duplicate question? http://stackoverflow.com/questions/756861/whats-the-relationship-between-a-heap-and-the-heap |
||
