home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / lang / c / 16253 < prev    next >
Encoding:
Text File  |  1992-11-09  |  672 b   |  21 lines

  1. Newsgroups: comp.lang.c
  2. Path: sparky!uunet!news.mentorg.com!caeco!asc386!mosmith
  3. From: mosmith@asc386 (Matt Smith)
  4. Subject: Re: To Recurse or NOT to recurse?
  5. Message-ID: <1992Nov10.003842.19169@asc386>
  6. Organization: Auto-Soft Corp.
  7. References: <1992Nov6.185136.8055@netcom.com>
  8. Date: Tue, 10 Nov 1992 00:38:42 GMT
  9. Lines: 10
  10.  
  11. The question is whether to recusively desend a linked-list or
  12. to do it iteraviely( a while loop).  My expeience has
  13. shown that the while loop is better in the long run.
  14.  
  15. Reason:  Recursion uses the stack to store the recusive stuff (hope
  16. that's not too techy) which tends to blow up.  I prefer the other
  17. way
  18.  
  19.  
  20. mosmith!asc386@caeco.slc.mentorg.com
  21.