I've implemented recursive algorithm that can be found under this link. It works very fine when the 3d array is 10x10x10.
I'm trying to make it run for 200x200x200 array however, Visual Studio says that I might be ussing infinite resursive (I'm pretty sure my prog is OK). Is there any way to handle that? I've tried putting [DebuggerNonUserCode] right before the recursive method, but it haven't worked.
Forgot to mention, it's Visual Studio 2010.
Here's recursive function from my program. I'm running that for every cell, that is marked as Unvisited.
public static int tmp_lowest_floor = 0;
public static int tmp_maks_size = 0;
static void function1(Point[, ,] array, int pos_y, int pos_z, int pos_x) // recursive function
{
Point cell = array[pos_y, pos_z, pos_x];
if (cell.Visited == false && cell.IsCave)
{
cell.Visited = true; // changing to visited so we do not count anything for this cell anymore
tmp_maks_size++; // increasing for each cell in this cave (in this run)
if (tmp_lowest_floor < pos_y) { tmp_lowest_floor = pos_y; }
cell.FillNeighbourList(array, pos_y, pos_z, pos_x);// adds neighbours into cell's list (max 6) up, down, north, east, south, west
foreach (Point p in cell.neighbours) // max 6 times recursion in here (I know it sounds horrible, but once I check all the neighbours for a cell, I'll not have to check it ever again)
{
if (p != null)
{
if (p.IsCave == true && p.Visited == false)
{
function1(tablica, p.pos_y, p.pos_z, p.pos_x);
}
}
}
}
}
p.s. I know I can do it in a iterative way, however, the homework says it has to be done with recursion
StackOverflowException, you'd probably just start corrupting other memory on your computer, which I'm sure is not what you want. – Bobson Nov 6 '12 at 20:19