| View previous topic :: View next topic |
| Author |
Message |
nikulinden@gmail.com Guest
|
Posted: Mon Oct 31, 2005 5:45 am Post subject: recursive functions |
|
|
Hi all!
Can anyone recommend a good book on recursion. I don't need basic info
I would prefer something of intermediate lvl. The interest is more of
practical usage but some theory would help as well.
Ty for your help
|
|
| Back to top |
|
 |
Dave Townsend Guest
|
Posted: Mon Oct 31, 2005 6:32 am Post subject: Re: recursive functions |
|
|
<nikulinden (AT) gmail (DOT) com> wrote
| Quote: | Hi all!
Can anyone recommend a good book on recursion. I don't need basic info
I would prefer something of intermediate lvl. The interest is more of
practical usage but some theory would help as well.
Ty for your help
|
Recursion - see Recusion
|
|
| Back to top |
|
 |
Greg Guest
|
Posted: Mon Oct 31, 2005 8:16 am Post subject: Re: recursive functions |
|
|
[email]nikulinden (AT) gmail (DOT) com[/email] wrote:
| Quote: | Hi all!
Can anyone recommend a good book on recursion. I don't need basic info
I would prefer something of intermediate lvl. The interest is more of
practical usage but some theory would help as well.
Ty for your help
|
In my experience every book on recursion that I've ever started to read
turned out to be extremely repetitive. And I've never found one that I
could make it all the way through to the end.
Greg
|
|
| Back to top |
|
 |
TB Guest
|
Posted: Mon Oct 31, 2005 10:55 am Post subject: Re: recursive functions |
|
|
[email]nikulinden (AT) gmail (DOT) com[/email] sade:
| Quote: | Hi all!
Can anyone recommend a good book on recursion. I don't need basic info
I would prefer something of intermediate lvl. The interest is more of
practical usage but some theory would help as well.
Ty for your help
|
If you need to sharpen your knowledge of how to apply recursion in a
design, then do some programming in Common Lisp or Scheme.
If you need a book on only recursion here's one:
http://tinyurl.com/bkddo
--
TB
|
|
| Back to top |
|
 |
Victor Bazarov Guest
|
Posted: Mon Oct 31, 2005 2:20 pm Post subject: Re: recursive functions |
|
|
Dave Townsend wrote:
| Quote: | nikulinden (AT) gmail (DOT) com> wrote in message
news:1130737553.977589.234160 (AT) g49g2000cwa (DOT) googlegroups.com...
Hi all!
Can anyone recommend a good book on recursion. I don't need basic info
I would prefer something of intermediate lvl. The interest is more of
practical usage but some theory would help as well.
Ty for your help
Recursion - see Recusion
|
One word: spellchecker!
|
|
| Back to top |
|
 |
Rolf Magnus Guest
|
Posted: Mon Oct 31, 2005 6:55 pm Post subject: Re: recursive functions |
|
|
[email]nikulinden (AT) gmail (DOT) com[/email] wrote:
| Quote: | Hi all!
Can anyone recommend a good book on recursion. I don't need basic info
I would prefer something of intermediate lvl. The interest is more of
practical usage but some theory would help as well.
Ty for your help
|
See: http://tinyurl.com/d35ws
|
|
| Back to top |
|
 |
den Guest
|
Posted: Mon Oct 31, 2005 9:23 pm Post subject: Re: recursive functions |
|
|
hwat do you mean??
|
|
| Back to top |
|
 |
Alf P. Steinbach Guest
|
Posted: Mon Oct 31, 2005 9:35 pm Post subject: Re: recursive functions |
|
|
* [email]nikulinden (AT) gmail (DOT) com[/email]:
| Quote: |
Can anyone recommend a good book on recursion. I don't need basic info
I would prefer something of intermediate lvl. The interest is more of
practical usage but some theory would help as well.
|
There isn't much to know. ;-)
Except if you're thinking of applications of recursion. Then that is
unbounded theme. You can apply recursion to just about any problem.
<url:
http://home.no.net/dubjai/win32cpptut/special/pointers/preview/pointers_01__alpha3.doc.pdf>
has a some basic examples of recursion in section 2, with the same
recursion implemented various ways in C++ (single function, virtual
member functions, recursive destructor).
--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
|
|
| Back to top |
|
 |
Old Wolf Guest
|
Posted: Mon Oct 31, 2005 10:59 pm Post subject: Re: recursive functions |
|
|
Rolf Magnus wrote:
| Quote: | nikulinden (AT) gmail (DOT) com wrote:
Hi all!
Can anyone recommend a good book on recursion. I don't need basic info
I would prefer something of intermediate lvl. The interest is more of
practical usage but some theory would help as well.
Ty for your help
See: http://tinyurl.com/d35ws
|
Broken link for me: try http://tinyurl.com/cf7d2 .
|
|
| Back to top |
|
 |
den Guest
|
Posted: Mon Oct 31, 2005 11:31 pm Post subject: Re: recursive functions |
|
|
Yeh I guess you are right. Thats what I really meant. I know how it
works and I can write a basic recursive function but when I come across
some very cleverly written recursive function I am like ' geez thats
just brilliant!' or a few days ago I was wrecking my head trying to
figure out how one complicated r. function worked ( it was calling also
another recursive function). It is just I want to get a better
understanding where it is more applicable and how it works. You know,
maybe get a book that goes into more detail then a general book on C++
and have more good examples, something like that.
Ty for your feedback!
|
|
| Back to top |
|
 |
Niklas Norrthon Guest
|
Posted: Tue Nov 01, 2005 7:42 am Post subject: Re: recursive functions |
|
|
"Greg" <greghe (AT) pacbell (DOT) net> writes:
| Quote: | nikulinden (AT) gmail (DOT) com wrote:
Hi all!
Can anyone recommend a good book on recursion. I don't need basic info
I would prefer something of intermediate lvl. The interest is more of
practical usage but some theory would help as well.
Ty for your help
In my experience every book on recursion that I've ever started to read
turned out to be extremely repetitive. And I've never found one that I
could make it all the way through to the end.
|
Then you haven't read 'Structure and Interpretation of Computer Programs'
by Abelson and Sussman.
Web version at: http://mitpress.mit.edu/sicp/full-text/book/book.html
/Niklas Norrthon
|
|
| Back to top |
|
 |
Rolf Magnus Guest
|
Posted: Tue Nov 01, 2005 12:01 pm Post subject: Re: recursive functions |
|
|
Old Wolf wrote:
| Quote: | Hi all!
Can anyone recommend a good book on recursion. I don't need basic info
I would prefer something of intermediate lvl. The interest is more of
practical usage but some theory would help as well.
Ty for your help
See: http://tinyurl.com/d35ws
Broken link for me: try http://tinyurl.com/cf7d2 .
|
Actually, it was supposed to be a self reference, but the problem was that
"msgid:" is not what I have to write in the search line for searching a
message id. Ironically, if you remove the "msgid:" in the search line, it
works.
|
|
| Back to top |
|
 |
|