all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Scott <drmemory@3rivers.net>
To: help-gnu-emacs@gnu.org
Subject: Incredible shrinking list....
Date: Fri, 17 Oct 2008 14:47:42 -0600	[thread overview]
Message-ID: <20081017204742.GB1614@drmemory.local> (raw)

Hi,

I am very much a newbie, so forgive if this is a stupid question.

I am trying to write a function which returns a randomized permutation
of a certain number of items. Here is my stab at it, and the problem
which baffles me:


(defun pick-ten ()
  "Pick a series of ten unique random numbers from 0-9.
You should ensure that random is properly 'seeded', as eg:
  (random t)
prior to using this function."
(let ((all-ten '(0 1 2 3 4 5 6 7 8 9))	;initial list
      (rnd-list '())			;return value
      (nxt 0))				;placeholder for current number
  (while all-ten			;step through the list
    (setq all-ten 			;trim by
     (delq 				;deleting selected number
      (setq nxt 			;but remember number for later
        (car 
          (nthcdr (mod (random)(length all-ten)) all-ten)
        )
     ) all-ten))
   (setq rnd-list (cons nxt rnd-list))	;and put into the return value
  ) 
  rnd-list				;now return it.
))

;; works fine on the first evaluation,
;; but the series somehow shrinks with subsequent calls!
;; what am I doing wrong???!
;;
(pick-ten)(3 2 9 7 1 6 0 5 8 4)
(pick-ten)(1 0 2 3)
(pick-ten)(0 1)
(pick-ten)(0)

(version)"GNU Emacs 21.3.2 (i586-pc-linux-gnu, X toolkit)
 of 2004-07-02 on DrMemory"

(time-to-upgradep (version))t

I'm sure there is a far better way to write this, but I can't for the
life of me figure out why my ham-handed attempt is acting so
bizarrely, and would appreciate any help!


thanks,

Scott swanson





             reply	other threads:[~2008-10-17 20:47 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-17 20:47 Scott [this message]
2008-10-18  4:15 ` Incredible shrinking list Kevin Rodgers
2008-10-21  8:09   ` Alex Schroeder

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=20081017204742.GB1614@drmemory.local \
    --to=drmemory@3rivers.net \
    --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.