About 10,700,000 results
Open links in new tab
  1. What and where are the stack and heap? - Stack Overflow

    Sep 17, 2008 · What are the stack and heap? Where are they located physically in a computer's memory? To what extent are they controlled by the OS or language run-time? What is their …

  2. How to interpret the result of !heap -l from Windbg

    May 21, 2018 · When I use !heap -l to find leak, one of the heap entry returned is 00000000002e73d0 on heap 0000000000270000. But when I use !heap -a …

  3. malloc - What is a Memory Heap? - Stack Overflow

    Feb 22, 2010 · A memory heap is a location in memory where memory may be allocated at random access. Unlike the stack where memory is allocated and released in a very defined …

  4. O que são e onde estão a "stack" e "heap"?

    O que são esses tais de stack e heap que tanto se fala em gerenciamento de memória? Isso realmente são porções da memória como algumas pessoas falam ou é apenas um conceito …

  5. Stack, Static, and Heap in C++ - Stack Overflow

    Nov 2, 2015 · The heap is a bunch of memory that can be used dynamically. If you want 4kb for an object then the dynamic allocator will look through its list of free space in the heap, pick out …

  6. When would I want to use a heap? - Stack Overflow

    Apr 14, 2009 · Besides the obvious answer of a Priority Queue, when would a heap be useful in my programming adventures?

  7. Why are two different concepts both called "heap"? [duplicate]

    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?

  8. Newest Questions - Stack Overflow

    Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Try Teams for free Explore Teams

  9. Is there a Heap in java? - Stack Overflow

    Jan 4, 2013 · I am porting a C++ library to Java and I need a heap data structure. Is there a standard implementation or will I need to do it myself?

  10. c++ - Efficient implementation of binary heaps - Stack Overflow

    Aug 27, 2012 · I'm looking for information on how to implement binary heaps efficiently. I feel like there should be a nice article somewhere about implementing heaps efficiently, but I haven't …