Xref: utzoo comp.edu:3615 uw.general:1837 Path: utzoo!attcan!uunet!decwrl!shelby!neon!kanamori From: kanamori@Neon.Stanford.EDU (Atsushi Kanamori) Newsgroups: comp.edu,uw.general Subject: Re: Recursion? Message-ID: <1990Oct5.173551.5130@Neon.Stanford.EDU> Date: 5 Oct 90 17:35:51 GMT References: <1990Oct5.101354.593@contact.uucp> Distribution: na Organization: Computer Science Department, Stanford University Lines: 15 In article <1990Oct5.101354.593@contact.uucp> rrwood@contact.uucp (roy wood) writes: > >Does anyone out there know of any other good examples that >show the reak usefulness of recursion? Dunno about business environments but as for reek (er, real) uses of recursion: processing nested #include directives in C files, evaluating arithmetic expressions, recursive descent parsing, maintaining binary search trees (or any kind of tree), implementing quicksort. That should do it.