home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / NVDC87.ZIP / BINTRE.ZIP / PREORTRV.C < prev   
Encoding:
Text File  |  1987-08-11  |  269 b   |  8 lines

  1. void preOrder (NODETYPE *node)    
  2. {
  3.   if (node != NULL) {
  4.     /* insert your processing operation here */
  5.     preOrder (node->LLink);             /* now go left */
  6.     preOrder (node->RLink);          /* and then right */
  7.   }
  8. }  /* end of function preOrder() */