Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
12answers
5k views

Java very large heap sizes

Does anyone have experience with using very large heaps, 12 GB or higher in Java? Does the GC make the program unusable? What GC params do you use? Which JVM, Sun or BEA would be better suited for ...
8
votes
7answers
1k views

If I allocate memory in one thread in C++ can I de-allocate it in another

If I allocate memory in one thread in C++ (either new or malloc) can I de-allocate it in another, or must both occur in the same thread? Ideally, I'd like to avoid this in the first place, but I'm ...
4
votes
6answers
522 views

Why does Java uses heap for memory allocation?

I just read this statement in a java book saying Objects in java reside on a heap. Is a heap used because it is the best way to store data and retrieve data fast ? I only have an idea about data ...
2
votes
3answers
84 views

limiting size of binary heap to first N elements

I've been studying binary heaps, and they are obviously a good data structure for a priority queue. Let's say that my stream of data has millions (N) of records, and I'm periodically interested in ...
2
votes
1answer
228 views

1-ary heap sort?

A while back we were given an assignment to write a c program that sorts an array of n numbers using a d-ary max-heap (a heap where each node has up to d children). The program needed to ask the user ...
1
vote
1answer
67 views

Bottom up Construction heaps

I'm doing a question where I have 10 keys and I have to make a bottom up construction. According to my book, I'm supposed to construct (n+1)/2 heaps which is 11/2=5.5 heaps for the bottom. Then 11/4 ...
1
vote
1answer
163 views

how to downheap

I am currently working on an assignment for a datastructures and algorithms class. I have to delete the node out of the heap given; 6 after replacing the node ; 20 / ...
0
votes
0answers
161 views

Why is my upheap and downheap sort not working?

Ok so my program is to write a C++ program to sort items in several input files, using the heapsort technique. For each input file, your program first reads the items from the input file and builds a ...