The heap is process memory set aside for dynamic allocation.
5
votes
2answers
65 views
C: how to manage a large structure?
In C:
I am trying to use a structure containing a large array, and I have a stack overflow error while declaring it. I guess (correctly?) that I don't have enough memory in the stack, and therefore, ...
0
votes
0answers
16 views
Eclipse crashes with “Java heap space” error whenever i deals with GUI of layout.xml
my eclipse(for android) crashes with "java heap error" whenever i deals with GUI layout.xml
-no doubt code compilation and run works fine n smothly.
pc config-
2GB RAM
pentium-dual codeCPU 2.80GHz
32 ...
1
vote
1answer
15 views
SBT runs out of memory
I am using SBT 0.12.3 to test some code and often I get this error message while testing interactively with the ~test command.
8. Waiting for source changes... (press enter to interrupt)
[info] ...
2
votes
3answers
52 views
What's the difference between data stored in global variables and data stored in the heap?
int globalInt = 1;
int main(){
int* heapInt = new int(1);
}
What is the difference between globalInt and heapInt? I know that what heapInt points to is in the heap, and I know that globalInt ...
0
votes
1answer
27 views
Exception in thread “main” java.lang.OutOfMemoryError: Java heap space with BASE64Decoder [closed]
I want to create message signing and verifying software written in java.
thus, I decided to use some code from the Internet.
While codes have no syntax error, it shows java heap space error.
...
0
votes
0answers
10 views
How to deep copy a btTriangleMesh in Bullet Physics?
I use Bullet Physics and I need to copy an instance of the btTriangleMesh type.
// the variable is a class member
btTriangleMesh triangles;
My aim is to change the collision shape of a body to a ...
2
votes
2answers
95 views
Can I end up with a pointer to an unintended location by passing a pointer to a stack variable to a function in C++?
I know compiler optimization can sometimes result in the stack frames volatility. So my question is if it is always safe to create a stack pointer in c++ and pass it to another function and expect it ...
3
votes
1answer
74 views
run code stored in memory
Problem:
run a non-trivial c program stored on the heap or data section of another c program as asm instructions.
My progress:
Ran a set of simple instructions that print something to stdout. The ...
0
votes
1answer
47 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
19 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
40 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?
3
votes
3answers
56 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
132 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 ...
1
vote
1answer
42 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
25 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
141 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
40 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
55 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
32 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
2answers
74 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
72 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
40 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
74 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
75 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
54 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
53 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
64 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
21 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
37 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
132 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
50 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
58 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
121 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
42 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
39 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, ...


