A heap (data structure) is a tree that is ordered with respect to depth.
I'm trying to track down a memory leak in a java process, using jmap and jhat. Every time I do …
java debugging memory-leaks heap jmapI'm making a desktop application in java and am doing some memory optimisations. That made me come across two threads …
java memory optimization heap java-threadsI am running Redis 2.8.19 on Windows Server 2008. I get an error saying that I have insufficient disc space for my …
powershell memory redis heap windows-server-2008I recenty came across sun.misc.Unsafe class, allowing user to allocate,deallocate and in general access memory in a …
java memory-management heap memory-mapped-files bytebufferI have class Foo { .... } Is there a way for Foo to be able to separate out: function blah() { Foo foo; // …
c++ stack heapI need to implement a priority queue where the priority of an item in the queue can change and the …
algorithm heap priority-queueIf I use gcore to make a code dump of a Node.js process, what are the best tools to …
node.js heap instrumentation coredumpUsing Scala 2.9 to implement a kind of Dijkstra algorithm (pseudo code) val queue = new PriorityQueue queue.insert(...) while (!queue.isEmpty) { …
algorithm scala data-structures heap priority-queue