Logo 
Search:

C++ Programming FAQ

Submit Interview FAQ
Home » Interview FAQ » C++ ProgrammingRSS Feeds

Recursive algorithm for traversing a binary tree in inorder in dfs (data file structure).

  Shared By: Adal Fischer    Date: Oct 29    Category: C++ Programming    Views: 2135

Answer:

PROCEDURE RINORDER(T)
[Given a binary tree whose root node address is given by the pointer variable T, this algorithm traverses the tree in inorder in a recursive manner].

1. [Check for empty tree]

If T = NULL
then write (“Empty Tree”)
return.

2. [Process the left tree]

If LPTR(T) != NULL
then call RINORDER(LPTR(T)).

3. [Process the root node]

else
write DATA(T).

4. [Process the right node]

If RPTR(T) != NULL
then call RINORDER(RPTR(T)).

5. [FINISH]
return.

Share: 
 



Your Comment
  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].


Tagged: