I'm creating a very large binary tree recursively with c#. It has more than millions of nodes. I've allocate 224MB Stack memory(0xE000000) for the CreateBinTree Thread usage.
Most nodes' right child is null. If the node's right child is not null, we have to backup a group of array to store the current node's necessary status for creating right child after left tree is finished. code looks like this:
public void CreateBinTree(Node<uint> parent)
{
uint BinCreateAdd = 0;
if(bMultiPath(_binFile, parent.Data) == true)
{
byte[] SRAM_T = new byte[0x100];
byte[] STACK_T = new byte[0x100];
Parallel.For(0, 0x100, index => SRAM_T[index] = SRAM[index]);
Parallel.For(0, 0x100, index => STACK_T[index] = STACK[index]);
...
BinCreateAdd = OPAnalyze(_binFile,parent.Data,_PATHL); // SRAM[],STACK[] has to be used and themselves will be changed in this function.
parent.LNode = new Node<uint>(BinCreateAdd);
if(...)
{
CreateBinTree(parent.LNode);
}
else
{
parent.LNode = null;
}
// Right child
Parallel.For(0, 0x100, index => SRAM[index] = SRAM_T[index]);
Parallel.For(0, 0x100, index => STACK[index] = STACK_T[index]);
BinCreateAdd = OPAnalyze(_binFile,parent.Data,_PATHR);
parent.RNode = new Node<uint>(BinCreateAdd);
if(...)
{
CreateBinTree(parent.RNode);
}
else
{
parent.RNode = null;
}
}
else // Left Child only
{
BinCreateAdd = OPAnalyze(_binFile,parent.Data,_PATHL);
parent.LNode = new Node<uint>(BinCreateAdd);
if(...)
{
CreateBinTree(parent.LNode);
}
else
{
parent.LNode = null;
}
parent.RNode = null;
}
}
Nodes' data are in the heap, and the backup arrays are always in the heap if the parent node's left tree not finished. For the binary tree has so many nodes and backup arrays during creation. the heap was exhausted. System.OutOfMemoryException error happens.
I've been thinking about this question for a long time. How to reduce memory usage when create the binary tree?
Could anybody please help me in this? Appreciate your help in advance!:-)
Parallel.Forto copy 256 bytes? – Alexei Levenkov Feb 23 at 6:36