About 9,930,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. 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 …

  4. heap - python, heapq: difference between heappushpop () and …

    I couldn't figure out the difference (other than ordinality of push/pop actions) between functions heapq.heappushpop () and heapq.heapreplace () when i tested out the following code. >>> from

  5. 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?

  6. Heap Memory in C Programming - Stack Overflow

    Apr 6, 2017 · The heap is part of your process's address space. The heap can be grown or shrunk; you manipulate it by calling brk(2) or sbrk(2). This is in fact what malloc(3) does. …

  7. How can building a heap be O (n) time complexity? - Stack Overflow

    Mar 18, 2012 · 943 Can someone help explain how can building a heap be O (n) complexity? Inserting an item into a heap is O (log n), and the insert is repeated n/2 times (the remainder …

  8. c# - Heap class in .NET - Stack Overflow

    Possible Duplicate: Fibonacci, Binary, or Binomial heap in c#? Is there any class like heap in .NET? I need some kind of collection from which I can retrieve min. element. I just want 3 …

  9. Difference between "on-heap" and "off-heap" - Stack Overflow

    May 22, 2011 · Ehcache talks about on-heap and off-heap memory. What is the difference? What JVM args are used to configure them?

  10. What do I use for a max-heap implementation in Python?

    Python includes the heapq module for min-heaps, but I need a max-heap. What should I use for a max-heap implementation in Python?