View Single Post
  #1  
Old 03-23-2010, 09:07 PM
webdev webdev is offline
Senior Member
 
Join Date: Jun 2009
Posts: 7,868
Default Pascal binary tree depth first search problem.

I've been massing with this problem for almost a week. It's about DFS search in a binary tree. It compiles well but when i run it I get exitcode 216 error. Can anybody help? program prg; uses crt; type ptrnode=^node; node = record data: char; l,r: ptrnode; end;
__________________
Website Development
Domain Name Forum
Reply With Quote