C++Talk.NET Forum Index C++Talk.NET
C++ language newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

recursive functions

 
Post new topic   Reply to topic    C++Talk.NET Forum Index -> C++ language (comp.lang.c++)
View previous topic :: View next topic  
Author Message
nikulinden@gmail.com
Guest





PostPosted: Mon Oct 31, 2005 5:45 am    Post subject: recursive functions Reply with 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

Back to top
Dave Townsend
Guest





PostPosted: Mon Oct 31, 2005 6:32 am    Post subject: Re: recursive functions Reply with quote




<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





PostPosted: Mon Oct 31, 2005 8:16 am    Post subject: Re: recursive functions Reply with quote




[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





PostPosted: Mon Oct 31, 2005 10:55 am    Post subject: Re: recursive functions Reply with quote

[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





PostPosted: Mon Oct 31, 2005 2:20 pm    Post subject: Re: recursive functions Reply with quote

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





PostPosted: Mon Oct 31, 2005 6:55 pm    Post subject: Re: recursive functions Reply with quote

[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





PostPosted: Mon Oct 31, 2005 9:23 pm    Post subject: Re: recursive functions Reply with quote

hwat do you mean??

Back to top
Alf P. Steinbach
Guest





PostPosted: Mon Oct 31, 2005 9:35 pm    Post subject: Re: recursive functions Reply with quote

* [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





PostPosted: Mon Oct 31, 2005 10:59 pm    Post subject: Re: recursive functions Reply with quote

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





PostPosted: Mon Oct 31, 2005 11:31 pm    Post subject: Re: recursive functions Reply with quote

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





PostPosted: Tue Nov 01, 2005 7:42 am    Post subject: Re: recursive functions Reply with quote

"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





PostPosted: Tue Nov 01, 2005 12:01 pm    Post subject: Re: recursive functions Reply with quote

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
Display posts from previous:   
Post new topic   Reply to topic    C++Talk.NET Forum Index -> C++ language (comp.lang.c++) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.