Top "Heap" questions

A heap (data structure) is a tree that is ordered with respect to depth.

How to give Jenkins more heap space when it´s started as a service under Windows?

I want to increase the available heap space for Jenkins. But as it is installed as a service I don´…

jenkins heap jvm-arguments
How to debug heap corruption errors?

I am debugging a (native) multi-threaded C++ application under Visual Studio 2008. On seemingly random occasions, I get a "Windows has …

c++ windows debugging heap
What does "zend_mm_heap corrupted" mean

All of the sudden I've been having problems with my application that I've never had before. I decided to check …

php heap fedora php-internals
How to increase application heap size in Eclipse?

Some say I need to do that in Run Configurations for my application. When I open that window, could you …

eclipse jvm heap
Find running median from a stream of integers

Possible Duplicate: Rolling median algorithm in C Given that integers are read from a data stream. Find median of elements …

algorithm heap median
Java Refuses to Start - Could not reserve enough space for object heap

Background We have a pool of aproximately 20 linux blades. Some are running Suse, some are running Redhat. ALL share NAS …

java linux memory jvm heap
Stack, Static, and Heap in C++

I've searched, but I've not understood very well these three concepts. When do I have to use dynamic allocation (in …

c++ static garbage-collection stack heap
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 …

python data-structures heap recursive-datastructures
how to increase java heap memory permanently?

I have one problem with java heap memory. I developed one client server application in java which is run as …

java jvm heap heap-memory heap-dump
Why should C++ programmers minimize use of 'new'?

I stumbled upon Stack Overflow question Memory leak with std::string when using std::list<std::string>, and …

c++ memory-management heap new-operator c++-faq