The heap is process memory set aside for dynamic allocation.

learn more… | top users | synonyms

0
votes
1answer
41 views

Java : Could not reserve enough space for object heap

I am getting the following error when trying to run java with 1G memory. C:\>java -verbose -Xmx1G When I run it, I receive the following message: Error occurred during initialization of VM ...
-1
votes
1answer
17 views

what is the average time cost of min heap

looking over my test for data structures i noticed something when going over it, can someone please help and answer, what is the average time cost (big O) of a search for a max key in min heap ...
-1
votes
1answer
36 views

When does a heap become a full binary tree?

I know that heaps are always complete binary trees. But I was wondering when is a heap a full binary tree? Such as what conditions must the heap be in to always be a full binary tree?
2
votes
3answers
51 views

Which goes on the stack or heap?

I am doing some studying and I came across a question that asks to show the correct memory diagram of the following code: int [] d1 = new int[5]; d1[0] = 3; Integer [] d2 = new Integer[5]; d2[0] = ...
-2
votes
1answer
127 views

Why is C++ heap allocation so slow compared to Java's heap allocation? [closed]

I ran small tests in Java and C++, creating tons of very small objects (no class members, nothing in constructors) and Java is clearly faster (I mean C++ seems to be really slow). I bet this has to do ...
0
votes
1answer
34 views

stack and heap diagram of method that is assigned to reference variable

How could we draw the stack and heap diagram of following code: Ball b1; Ball b2 = new Ball(); Ball b3 = new Ball(); b1= doThing(); b3 = doThings(); I know call methed (e.g doThing()) will be in ...
0
votes
1answer
22 views

Android - Heap usage at Application Start and CG_CONCURRENT

I'm having troubles with performances on my application because of the GC, and I don't have really much experience to understand what's going on. Here's the detailed situation of what's happening. ...
0
votes
3answers
136 views

Heap and Pointer in C++

I got question on pointer. Here is my question : Write a function int* read_data(int& size) that reads data from cin until the user terminates input by entering Q. The function should set the ...
1
vote
1answer
20 views

How can I retrieve the max heap available on device?

I have a problem. My app use 20MB of ram so I want to avoid mobile phone that have heap less than 20MB. I tried with Runtime.getRuntime.maxMemory() but this function retrieve me the wrong result ...
0
votes
1answer
17 views

Execute jmap inside java program to generate dumps for the same process

Is it possible to execute 'jmap' at different spots inside my java-programm to generate dump files. I guess one must get the own process ID and than execute the command via Runtime().exec() or ...
0
votes
1answer
31 views

Android devices, heap size

Currently my application works with android 2.1+ devices. This app processes bitmaps. Sometimes I get OutOfMemory (eg. HTC G1 [16mb heap]). I would like to specify this app for devices with min. 48mb ...
2
votes
2answers
52 views

Does Java's new keyword necessarily denote heap allocation?

I'm trying to write something fast, and that constantly allocates and deallocates memory, making where this memory is allocated important in terms of performance. Does allocating objects always ...
0
votes
1answer
30 views

understanding heapq push pop

My goal was to sort a dictionary by values for the top ten. It seemed appropriate to use a heap. So i read up on pythons heapq and wrote this: def top_ten_hash_tags(ranked_hash_tags): ...
1
vote
5answers
45 views

Sifting Down From Heap Removal

I'm trying to work with this heap. I'm inserting a few random numbers then removing them to make sure my heap works. The problem is when I'm removing them I get duplicate numbers that shouldn't exist ...
0
votes
0answers
9 views

update heap when changing one element in O(lg(n))

I have a binary-heap and I want to update just an element. Is there any way to update without bubble up/bubble down?
2
votes
3answers
72 views

how to allocate pointer to pointer on stack and how on heap?

Is this correct way to allocate pointer to pointer on stack and on heap? If not, then what is a correct way to do it? int a=7; int* mrPointer=&a; *mrPointer; int** iptr; // iptr is on stack ...
-1
votes
0answers
29 views

Heap overflow vs stack overflow [migrated]

So as a general rule to avoid stack overflow, big objects should be allocated to the heap(correct me if I am wrong). But since the heap and the stack expand towards each other, wouldn't this cause ...
1
vote
1answer
67 views

Priority queue/min heap for directed graph with Dijkstra's alg

For an assignment I need to implement Dijkstra's algorithm using a priority queue implemented as a min heap. I already have an implementation in which I use a distance table and an unordered array of ...
0
votes
1answer
39 views

Determining if a list of numbers is in heap order, Python 3.2

I just discovered heap (in real life and in Python) and now I'm trying to determine if a certain list of random numbers is in heap order. Problem is I'm not sure myself if I actually understand "heap" ...
0
votes
2answers
73 views

c++ store on heap save on stack

I have a code which dynamically allocates a 2D array, uses it for some computation, then puts it onto a variable named result on stack and deallocates the 2D array. I was wondering why this works and ...
3
votes
2answers
74 views

Allowing heap allocating objects inside a short-lived scope to ensure freedom of memory fragmentation

We're using C++ in an embedded system environment and basically don't want any kind of dynamic memory allocation (see for example Resources for memory management in embedded application for the kind ...
-3
votes
2answers
53 views

c program not outputting as expected

So I have this program that I put together from head first c. It is from Chapter 6 - the data structures chapter... My problem is that the output displays all previous listed entries as well as the ...
1
vote
3answers
70 views

how to make array of nodes?

I have a little bit of misconception of pointers and arrays. when I want to create an array of nodes I need a pointer right? Is it Node* array; array = new Node[size]; And of course the problem ...
0
votes
3answers
50 views

Initializing a data member array of object pointers to the correct size and null

I have a simple C++ Node class which contains an array data member of pointers to the same type. This array is dynamically allocated and its pointers should default to null but I'm not sure how to ...
0
votes
3answers
63 views

In Java, can operations on object fields bypass the stack?

Java heap only stores objects, and stack only stores primitive data and object reference. Consider A.a = B.b , where A.a and B.b are int. In my understanding, a JVM will first GET the value of A.a ...
0
votes
0answers
29 views

Initializing VM error

I have a problem. I have followed a tutorial about making an android 2D game, it's called kilobolt. (http://www.kilobolt.com/) But when i want to debug the game I get this error: Android Dex: ...
0
votes
0answers
20 views

How to resolve “Failed during test case generation GC overhead limit exceeded” while creating Junits using CodePro?

This What does the error-message 'java.lang.OutOfMemoryError: GC overhead limit exceeded' mean in Java? discussed the reason but provides no soultion. Also, i got a wild suggestion that i ...
0
votes
0answers
33 views

Simple heap overflow exploit with toy example on old glibc

Consider this example of a heap buffer overflow vulnerable program in Linux, taken directly from the "Buffer Overflow Attacks" (p. 248) book: #include <stdlib.h> #include <string.h> int ...
4
votes
1answer
128 views

c++ Unhandled exception - how to debug

I have a problem when running a testcase in debug-mode: I get a pop-up-box with the message "Unhandled exception at 0x7c812fd3 in Test.exe: 0xE0000003: 0xe0000003.". The code breaks in free.c: void ...
0
votes
1answer
47 views

Creating an unsorted binary tree from an array (which will be like a heap ie storing order wise but unsorted)

I want to create a tree which stores integers in first come first serve order. The first element to be stored at root then the next to the left of root then right and so on. To store the integers I ...
0
votes
1answer
56 views

Possible memory leak after whsihtml5 removal

You can view the simple testing page here The page contains one textarea, a "create" button and a "remove" button. When the "create" button is clicked, the "textarea" is used to create "wysihtml5". ...
-2
votes
1answer
53 views

Why do i get mismatched error ? (C )

I have this code, but can't find the source of the error.I would like to store multiple names in the char array, and i have to use char type. I made this, but something is wrong with this. #include ...
0
votes
1answer
120 views

Delete of array of pointer: _BLOCK_TYPE_IS_VALID

I have a code in which I need to allocate a pointer to an array of pointers, but when I want to be safely deleted it, debuger gives me error. I know I should not use a pointer array of pointers but ...
0
votes
2answers
70 views

Returning instances allocated in the heap vs in the stack

It's been many, many years since the last time I did something in C++. These days, someone asked me for some help on a school project in C++, and I was intrigued by a "feature" of the language I've ...
1
vote
1answer
40 views

Java GC strange behaviour or memory leak?

I am working on a Swing application and recently, I started to see the following problem: I have to display in a separate window a very large job report. I close this window, then I re-open the same ...
-5
votes
3answers
60 views

How to write a class which exposes only 20 of its Objects? [closed]

How to write a class which exposes only 20 of its Objects containing two methods borrowObject and returnObject .Code must be thread safe.Also write a method to get the number of Live Objects(Objects ...
2
votes
1answer
36 views

How do I turn off the fault tolerant heap on Windows 8?

This is the same question as on turn off FTH but on Windows8 so maybe there's a different answer. I have tried ALL the suggestions there and it still won't go away. I'm trying to debug a 32 bit ...
0
votes
2answers
39 views

How to use a array of heaps in python

I need to create and use n heaps, I am trying to use heapq and is trying to push elements into a list of lists, where each element is to be considered a seperate heap. But its behaving weirdly. I just ...
0
votes
0answers
38 views

Max tree nodes of a specific height of a heap

I need to prove that a heap with n elements has at most (Upper bound)[n/2^(h+1)] nodes which nodes have height H. Iam looking for a proof over 3 hours otherwise i wouldn't ask. I've found the answer ...
0
votes
1answer
38 views

Adding an element to the first non-occupied leaf in a binary tree

Right now I'm trying to write a binary heap in Java implemented over a binary tree structure, and while I do have a very good grasp on how to "heapify" the tree after adding an element, the logic for ...
5
votes
1answer
64 views

Array in C, and its pointer

Old question, but I still have some thoughts though. char * getarrmal(void) { char *str; str = (char *)malloc(10); str[0] = 'a'; str[1] = 'b'; str[2] = 'c'; str[3] = '\0'; ...
-2
votes
1answer
49 views

Bottom Up Makeheap Algorithm [closed]

I've been learning about how to construct a heap using the bottom up makeheap algorithm. I was wondering if someone could tell me if the below is correct? So the heap has these values: [10, 3, 4, 7, ...
5
votes
2answers
140 views

Where are multiple stacks and heaps put in virtual memory?

I'm writing a kernel and need (and want) to put multiple stacks and heaps into virtual memory, but I can't figure out how to place them efficiently. How do normal programs do it? How (or where) are ...
0
votes
0answers
33 views

PriorityQ from array to using a heap

Here's my code for creating a Priority Queue using an array, I was wondering how I could go about using this with a heap instead? Everything needed should be there, it is just set up using an array. I ...
1
vote
0answers
30 views

PageOutputStream causing java.lang.OutOfMemory

We have a struts2 web application running in Tomcat 7 that is intermittently experiencing the same problem: Application operating perfectly normally After a variable amount of time (anywhere from ...
0
votes
0answers
56 views

I have this heap in descending order, how do i make it ascending order?

This is all of the code I have showing how to call the heap, ect. and It is currently descending, I was wondering how to make it an ascending heap? I have everything hear to run it properly in ...
14
votes
2answers
193 views

Why does max number of threads decrease when I increase max heap size?

This test shows the max number of threads that can be created in Java System.out.println("Max memory " + Runtime.getRuntime().maxMemory() / 1024 / 1024 + "M"); for (int i = 0;; i++) { ...
1
vote
0answers
98 views

How does Windows keeps track of the size of VirtualAllocdBlocks?

I wonder how windows keeps track of the size of the "VirtualAllocdBlocks". According to WinDBG the memory blocks are managed in doubly linked lists. But this struct (_LIST_ENTRY) only contains two ...
-1
votes
0answers
82 views

Implementing an Efficient HeapSort Algorithm

I was wondering how to convert my code to use: public void add (E newItem) public E delete() The rest of the assignment is complete, however, I feel that I am using a integer Heap instead of a ...
2
votes
0answers
95 views

C++ multithreading with openMP: poor performance despite localized variables (false sharing?)

I have run into a fairly weird openMP problem. The task is to take a vector of strings and split each element into its contained k-Mers (all contained substrings of length k). This should parallelize ...

1 2 3 4 5 38