473,387 Members | 1,493 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

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

Oct 31 '05 #1
11 2767

<ni********@gmail.com> wrote in message
news:11**********************@g49g2000cwa.googlegr oups.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
Oct 31 '05 #2

ni********@gmail.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.

Greg

Oct 31 '05 #3
TB
ni********@gmail.com sade:
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
Oct 31 '05 #4
Dave Townsend wrote:
<ni********@gmail.com> wrote in message
news:11**********************@g49g2000cwa.googlegr oups.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!
Oct 31 '05 #5
ni********@gmail.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
Oct 31 '05 #6
den
hwat do you mean??

Oct 31 '05 #7
* ni********@gmail.com:

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?
Oct 31 '05 #8
Rolf Magnus wrote:
ni********@gmail.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 .

Oct 31 '05 #9
den
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!

Oct 31 '05 #10
"Greg" <gr****@pacbell.net> writes:
ni********@gmail.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

Nov 1 '05 #11
Old Wolf 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 .


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.
Nov 1 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Magnus Lie Hetland | last post by:
Hi! I've been looking at ways of dealing with nested structures in regexps (becuase I figured that would be faster than the Python parsing code I've currently got) and came across a few...
7
by: Jon Slaughter | last post by:
#pragma once #include <vector> class empty_class { }; template <int _I, int _J, class _element, class _property> class RDES_T {
7
by: Aloo | last post by:
Dear friends, If we declare a recursive function as 'inline' then does it actually convert to an iterative form during compilation ( the executable code is iterative)? Is it possible ? ...
9
by: Csaba Gabor | last post by:
Inside a function, I'd like to know the call stack. By this I mean that I'd like to know the function that called this one, that one's caller and so on. So I thought to do: <script...
41
by: Harry | last post by:
Hi all, 1)I need your help to solve a problem. I have a function whose prototype is int reclen(char *) This function has to find the length of the string passed to it.But the conditions...
5
by: Digital Puer | last post by:
I got this on an interview: Is it possible to write inline recursive functions? I said yes, but there is no guarantee that the compiler will definitely inline your code even if you write...
10
by: AsheeG87 | last post by:
Hello Everyone! I have a linked list and am trying to include a recursive search. However, I am having trouble understanding how I would go about that. I don't quite understand a recursive...
9
by: pereges | last post by:
Hello I need some ideas for designing a recursive function for my ray tracing program. The idea behind ray tracing is to follow the electromagnetic rays from the source, as they hit the...
3
by: from.future.import | last post by:
Hi, I encountered garbage collection behaviour that I didn't expect when using a recursive function inside another function: the definition of the inner function seems to contain a circular...
6
KevinADC
by: KevinADC | last post by:
This snippet of code provides several examples of programming techniques that can be applied to most programs. using hashes to create unique results static variable recursive function...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.