From: Paul Rubin <no.email@nospam.invalid>
To: help-gnu-emacs@gnu.org
Subject: Re: How to cast an imperative loop into a readable recursive function ?
Date: Thu, 02 Dec 2010 19:30:00 -0800 [thread overview]
Message-ID: <7xfwufmt3b.fsf@ruckus.brouhaha.com> (raw)
In-Reply-To: 84a24d31-6379-4b81-ac65-b0d8642ab7da@37g2000prx.googlegroups.com
Katalin Sinkov <lispstylist@gmail.com> writes:
> what I forgot to mention was that it should be possible to view the
> subseries problem in a way that I dont have to go thru a loop but use
> recursive definitions.
The problem is still very confusing, but it sounds to me like maybe
you want something like (untested):
(defun foo (n str)
(let ((s ...) (l ...) (p ...)
;; after reading the (s=2 l=4) prefix above,
;; p points past the end of it
(if (< n l)
(aref str (+ p n))
(foo (- n l) (substring str (+ p l)))))))
next prev parent reply other threads:[~2010-12-03 3:30 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-03 1:50 How to cast an imperative loop into a readable recursive function ? Katalin Sinkov
2010-12-03 2:17 ` Paul Rubin
[not found] ` <8a5ef1e1-aab3-47bd-80e3-081f8dc65b0e@c39g2000yqi.googlegroups.com>
[not found] ` <84a24d31-6379-4b81-ac65-b0d8642ab7da@37g2000prx.googlegroups.com>
2010-12-03 3:30 ` Paul Rubin [this message]
[not found] ` <0c1c00c1-61ef-42be-a2d3-db1ff31035e8@29g2000yqq.googlegroups.com>
2010-12-03 7:29 ` Paul Rubin
2010-12-03 9:44 ` Tim Bradshaw
2010-12-03 2:48 ` RG
2010-12-03 3:12 ` Katalin Sinkov
[not found] ` <7xk4jrmtmg.fsf@ruckus.brouhaha.com>
2010-12-03 3:22 ` Katalin Sinkov
[not found] ` <87ipzbpgft.fsf@kuiper.lan.informatimago.com>
2010-12-03 7:37 ` Katalin Sinkov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7xfwufmt3b.fsf@ruckus.brouhaha.com \
--to=no.email@nospam.invalid \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.