Domain Name Forum

Domain Name Forum (http://www.domainnameforum.org/index.php)
-   Pascal and Delphi (http://www.domainnameforum.org/forumdisplay.php?f=132)
-   -   Pascal binary tree depth first search problem. (http://www.domainnameforum.org/showthread.php?t=80710)

webdev 03-23-2010 09:07 PM

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;


All times are GMT -4. The time now is 05:17 PM.

Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.