vote up 0 vote down star

Can anyone point out a way of getting the depth of a Node in a Binary Tree (not a balanced one, or BST) without using recursion? Ideally in Java/C/C#

The node is represented as:

class Node
{
  Node Left;
  Node Right;
  string Value;
  int Depth;
}

Using Level Order with a FIFO list was my first thought, but I was stumped at detecting when the level changes, particular for unbalanced trees.

flag

Recursion has to be the easiest way to do this, what's the reason you want to avoid it? – Kirschstein Jun 17 at 13:06
Is the depth field the distance from root, or from the farthest child? – Justin Love Jun 17 at 13:39
Kirschstein: There are reasons to avoid recursive calls on platforms with limited resources (e.g. embedded systems). A non recursive algorithm with a constant memory foot print is often necessary. – Binary Worrier Jun 17 at 13:50
@Binary Worrier: Ah, I see. Thanks – Kirschstein Jun 17 at 14:56
The recursion posts I've read on SO give the advice that recursion should be used for a max of 10 levels. 10 levels in a complete tree is 1024 items so I'm curious how you'd do it for more than that (which I assume other trees based on the Binary Tree would use, albeit always balanced) – Chris S Jun 17 at 15:20
show 1 more comment

2 Answers

vote up 3 vote down

You can implement any resursive method with a stack, which is how resursion works anyways. Imagine your resursive function looks like

function int getDepth (Node head, string val)
{
    if (head == NULL)
    	return -1;

    if (val == head.Value)
    	return head.Depth;

    return MAX(getDepth(head.Left), getDepth(head.Right);
}

The non-resursive function looks something like

function int getDepth (Node head, string val)
{
    Stack s = new Stack();

    s.push(head);

    while(s.count > 0)
    {
    	Node temp = s.pop();

    	if (temp != NULL)
    	{
    		if (s.Value == val)
    			return s.Depth;
    		else
    		{
    			s.push(temp.Left);
    			s.push(temp.Right);
    		}
    	}

    }


    return -1;
}

EDIT:

This function sets the depth for each node

function void setDepth (Node head)
{
    Stack s = new Stack();

    head.Depth = 0;
    s.push(head);

    while(s.count > 0)
    {
    	Node temp = s.pop();

    	if (temp != NULL)
    	{
    		if (temp.Left != NULL)
    		{
    			temp.Left.Depth = temp.Depth + 1;
    			s.push(temp.Left);
    		}

    		if (temp.Right != NULL)
    		{
    			temp.Right.Depth = temp.Depth + 1;
    			s.push(temp.Right);
    		}
    	}

    }

}
link|flag
I'm after setting the depths too – Chris S Jun 17 at 16:31
vote up 1 vote down

I assume you mean filling in the Depth value on node, and/or finding max depth. One way to do this would be using two lists, and doing the level order as suggested. It'd be akin to:

int level=0;
List<Node> currentLevel = new List<Node>{root};
while(currentLevel.Count != 0)
{
  List<Node> nextLevel = new List<Node>{};
  foreach(Node node in currentLevel)
  {
    if(node.Right!=null) nextLevel.Add(node.Right);
    if(node.Left != null) nextLevel.Add(node.Left);
    node.Depth=level;
  }
  level++;
  currentLevel=nextLevel;
}

Basically, you enumerate each node on a given level, then find each node on the next level; until you run out of nodes/levels. Clearly, List could be replaced with just about any list like data structure (Linked List, Queue, etc). And the last value of 'level' would be max depth + 1. I suspect.

One other clarification based on re reading of the question; if you are searching for a node with a specific value, and want to find its depth, you would change the foreach loop to include 'if(node.Value==searchValue) return level;'. And, technically, if you are searching for a specific value, you shouldn't be doing a Level Order Traversal, but rather a search for the value using relevant Binary Tree properties (e.g. val < currentNode.Value goto left else goto right), and tracking your depth. If you are given only the Node and want to find its depth, you would either need to perform a binary search for the node from root, or you would need to track the Node's parent.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.