Search DominoPower's 11,320 Lotus-related article archive 
Home
EasyPrint
News details Click here for the RSS feed's XML code. This is not a browser URL.
Articles-only Click here for the RSS feed's XML code. This is not a browser URL.
Twitter Feed Click here for the Twitter feed.
PROGRAMMING POWER
Recursion: the good, the bad, and the alternatives
By Ian Murray

Sometime back, we looked at recursion as a way to solve some problems not easily solved in other ways. Unfortunately LotusScript recursion does have its limitations and in this article I will be discussing how to discover what those limitations mean for you and your code, and how you can avoid them.

To recap, recursion is where a process is designed to solve some problem by breaking the problem down to a single indivisible case and calling itself to deal with the "rest of the problem", where the "rest of the problem" is a smaller, similar problem to the original problem. This kind of effect can be seen in the natural world.

For example, with reference to an apple tree, a "tree part" is a piece of wood with either several smaller tree parts coming from one end, or with an apple or leaf attached to the end. If you set the initial tree part to be the trunk, then we have successfully described a tree -- almost. We are forgetting about the root. In fact the same process can be applied to the root, as this can be recursively described.

To find every apple on the tree, we could have some pseudo-code like:

Sub ExamineTreepart(Treepart):
If Treepart has apple then
Pick Apple
Else
For all attached treeparts
ExamineTreepart(attachedTreePart)
End forall
End if
End

Trees are everywhere in computing: filesystems, indexing (B-Tree, in Domino's case) and pretty much any kind of system hierarchy -- so it's important to be able to deal with them, from a programming point of view.

Most agents take a linear path from the start of the program through to the end, although we may have jump out to take advantage of re-usable code such as objects and subs/functions. We may also perform loops, such as "while... end while" or "forall". This is known as iterative programming. Any iterative method can be reproduced using recursion.

For example, printing a string could be described as "print the first character, then print the rest of the string by printing the first character of the remainder, then print the rest of..." as you can see here:

Sub PrintAscii(Byval sToPrint As String)

' A "string of characters" can be described as a single character followed by nothing or a string of characters

Print Asc(Left$(sToPrint,1)) 'The first character
If Len(sToPrint) > 1 Then
PrintAscii(Mid$(SToPrint,2)) '... The rest
End If
End Sub


1  ·  2  ·  3  ·  Next »
Other articles you might like
Home > Lotus Technologies > LotusScript (64 articles)
   When the debugger won't debug hidden code that isn't hidden
   What to do if the LotusScript debugger won't single-step over code
   Little known traps about Lotus Notes fields
Home > Tips & Techniques (102 articles)
   More about Domino log files
   Why your log.nsf might not be purging properly
   A faster way to repair corrupted server files
Get Weekly Email Updates
Subscribe to our regular weekly email newsletter. It's packed with tips, reviews, deep analysis, and the latest news.
 
Recent DominoPower Articles
Lotusphere 2010: mobility and collaboration
2010: A Lotusphere of change
Five trends for 2010
DominoPower TV Episode 1: Inside a strategy session with Teamstudio
More about Domino log files
Say goodbye to the Uh-Ohs. Long live the Tens.
Why your log.nsf might not be purging properly
Latest Lotus Headlines
SnTT: XPages Blank Calendar Control (Part 2), adding data
Have your Lotus Notes calendar display multiple time zones
Sample Database for Microsoft Office and Lotus Symphony Integration
Symphony 3.0 beta signals another attack on Office
Enabling DAOS on a database - new recommendation
Need your opinion on some new policy settings for Mail
Sometimes IBM Lotus Domino HTTP RPC Agents aren't the answer...
>> Read all the news
More from the ZATZ journals
Computing Unplugged: The iPad: Apple's latest heartbreaker
David Gewirtz Online: CNN commentary and analysis
OutlookPower: Running auto-respond rules when Outlook is closed
-- Advertisement --

Sophisticated Meets Simple For Document Management
Share. Control. Manage.
Documents, emails, and content in the context of how work is done. Native to Lotus Domino. The User Experience unseen for Lotus Domino. Do more with less. Really.

See the possibilities Docova unleashes for Lotus Domino.
-- Advertisement --

Mark your calendar for in-depth Lotus training, May 12-14, Boston
Join experts and peers May 12-14 in Boston for educational and networking events that deliver real-world Lotus training so you can increase productivity and efficiency in your company, advance your skills, and squeeze the most from your current environment. One registration gets you into THE VIEW's Admin2010 and Lotus Developer2010.

Register by December 31 to save $350.
ZATZ Home  ·  News  ·  Back Issues  ·  Credits/Trademarks ·  Link To Us
Copyright © 1998-2010, ZATZ Publishing. All rights reserved worldwide.
Editor's Login