From: Nikos Apostolakis <nikos.ap@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Need help in understanding an example of recursion
Date: Sat, 02 Jun 2007 12:09:19 -0400 [thread overview]
Message-ID: <87vee6wd74.fsf@Sullivan.bcc.cuny.edu> (raw)
Hello group,
I was browsing the source code of SAGE, and I tried to implement in
elisp the function that computes all the partitions of an integer n.
So I did the following:
(defun nea-partitions (n)
"Return a list with all partitions of the integer n."
(if (= n 0)
'(nil)
(nea-next-partitions (nea-partitions (- n 1)))))
(defun nea-next-partitions (lst)
(append (mapcar (lambda (x) (cons 1 x)) lst)
(dolist (elt (reverse lst) value)
(when (and elt
(or (= (length elt) 1)
(> (car elt) (cadr elt))))
(setq value (cons (cons (1+ (car elt)) (cdr elt))
value))))))
But this doesn't work:
(nea-partitions 0)
=> (nil)
(nea-partitions 1)
=> ((1))
(nea-partitions 2)
=> ((1 1) (2))
(nea-partitions 3)
=> (1 1 1) (1 2) (3) (2))
(nea-next-partitions '((1 1) (2)))
=> ((1 1 1) (1 2) (3))
(nea-next-partitions (nea-partitions 2))
=> ((1 1 1) (1 2) (3) (2))
Is there some subtle[0] point about recursion that I am missing?
Any help in understanding this will be greatly appreciated.
TIA,
Nikos
[0] for my level of understanding at least.
next reply other threads:[~2007-06-02 16:09 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-06-02 16:09 Nikos Apostolakis [this message]
[not found] <mailman.1503.1180804721.32220.help-gnu-emacs@gnu.org>
2007-06-02 20:02 ` Need help in understanding an example of recursion Pascal Bourguignon
2007-06-02 21:11 ` Nikos Apostolakis
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=87vee6wd74.fsf@Sullivan.bcc.cuny.edu \
--to=nikos.ap@gmail.com \
--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.