27

I have a list of things (I'll call it L), an index(N) and a new thing(NEW). If I want to replace the thing in L at N with NEW, what is the best way to do this? Should I get the sublist up to N and from N to the end of the list and then glue together a new list from the first part, NEW, and the last part using list? Or is there a better way to do this?

11 Answers 11

31
(setf (nth N L) NEW)

should do the trick.

3
  • 3
    yes, except you can't use t as a variable name in common lisp since it is also the truth symbol.
    – inglesp
    Oct 5, 2008 at 8:33
  • 1
    Updated the answer (and the question) to use NEW as the replacement item, rather than T
    – Olie
    Aug 5, 2013 at 15:19
  • 2
    A symbol named "T" is fine, it just can't be the one belonging to the "COMMON-LISP" package. :) Sep 23, 2013 at 18:43
8

How often are you going to do this; if you really want an array, you should use an array. Otherwise, yes, a function that makes a new list consisting of a copy of the first N elements, the new element, and the tail will be fine. I don't know of a builtin off the top of my head, but I haven't programmed in Lisp in a while.

Here is a solution in Scheme (because I know that better than Common Lisp, and have an interpreter for checking my work):

(define (replace-nth list n elem)
  (cond
    ((null? list) ())
    ((eq? n 0) (cons elem (cdr list)))
    (#t (cons (car list) (replace-nth (cdr list) (- n 1) elem)))))
3
  • Your link on arrays is to CLtL, a Common Lisp text. But your text is Scheme code. The question is unclear on what dialect it wants (although it's tagged common-lisp). It would help if you'd note that arrays are for CL and your example code is for Scheme. Oct 5, 2008 at 2:12
  • 1
    Very true; changed to reflect that.
    – hazzen
    Oct 5, 2008 at 15:42
  • @NathanShively-Sanders It's tagged Common Lisp. So the question wants Common Lisp. Unless of course, you suspect some conspiracy behind all that ;)
    – BitTickler
    Dec 22, 2022 at 1:44
7
(setf (nth N L) T)

is the clearest, most succinct, and fastest way, if what you want to do is a "destructive" modification, i.e. actually change the existing list. It does not allocate any new memory.

4

I just try to fix hazzen's code:

(define (replace-nth list n elem)
  (cond 
    ((null? list) ())
    ((eq? n 0) (cons elem list))
    (#t (cons(car list) (replace-nth (cdr list) (- n 1) elem)))))

> (replace-nth (list 3 2 9 2) 2 8)
(3 2 8 9 2)

This code inserted new element in the list. If we want to replace an element:

(define (replace-nth list n elem)
  (cond 
    ((null? list) ())
    ((eq? n 0) (cons elem (cdr list)))
    (#t (cons(car list) (replace-nth (cdr list) (- n 1) elem)))))

> (replace-nth (list 3 2 9 2) 2 8)
(3 2 8 2)

0 <= n <= length(list) - 1

3

hazzen's advice is good (use arrays) since you probably want to do a lot of these destructive updates and lists are very inefficient at random access. The easiest way to do this

(setq A (make-array 5) :initial-contents '(4 3 0 2 1))
(setf (elt 2 A) 'not-a-number)

where A is an array (although elt works for any sequence).

However, if you must be functional, that is

  1. You want to keep around both the old and new lists
  2. You want the old and new to share as much memory as possible.

Then you should use the Common Lisp equivalent of hazzen's code:

(defun replace1 (list n elem)
  (cond
    ((null list) ())
    ((= n 0) (cons elem list))
    (t (cons (car list) (replace1 (cdr list) (1- n) elem)))))

This looks slow because it is, and that's probably why it's not included in the standard.

hazzen's code is the Scheme version, which is useful is that's what you're using.

1
  • Thank you for the code in Common Lisp, however there's a bug in the (= n 0) condition: it should return (cons elem (cdr list)) instead of (cons elem list). Nov 21, 2013 at 11:08
1

Sounds like you want either rplaca or replace. See http://www.lispworks.com/documentation/HyperSpec/Body/f_rplaca.htm or http://www.lispworks.com/documentation/HyperSpec/Body/f_replac.htm#replace

1
  • 2
    Probably too much trouble. (setf (nth N L) T), as l0st3d suggested, does the right thing with the minimum of code. Oct 5, 2008 at 2:30
1

Use [REPLACE][1] (I use X instead of your T as T is the true value in Lisp):

(replace L (list X) :start1 N)

[1]: http://www.lispworks.com/documentation/HyperSpec/Body/f_replac.htm REPLACE

1
  • Exactly what I needed! This answer should be set as the accepted one! Dec 26, 2016 at 18:36
0

The obvious solution is slow and uses memory, as noted by others. If possible, you should try to defer replacing the element(s) until you need to perform another element-wise operation on the list, e.g. (loop for x in list do ...).

That way, you'll amortize away the consing (memory) and the iteration (cpu).

-1

quickly you can do it with JS on list-replace

1
  • Link broken, JS might refer to javascript in a Common Lisp question... or it might just be a means to make people click a link.
    – BitTickler
    Nov 2, 2023 at 2:31
-1
(defun replace-nth-from-list  (list n elem)  
      (cond  
        ((null list) ())  
        (t (append (subseq list 0 n) elem (subseq list (+ 1 n)(length list))))))
1
  • Assumes elem is a list, which might not necessarily be true. Feb 25, 2014 at 11:21
-1

You can use the standard functions substitute-if (for immutable operation) or nsubstitute-if (for side effecting operation) to replace an item in a list:

> (substitute-if 42 #'(lambda (x) (declare (ignore x)) t) '(1 2 3) :start 1 :count 1)
(1 42 3)

If you need a function often, which returns T no matter its argument, you could pretty this up by defining

(defun aye (x)
  (declare (ignore x))
  t)
> (substitute-if 42 #'aye '(1 2 3) :start 1 :count 1)
(1 42 3)

Or just use this to write your own function:

(defun replace-at (new-item index sequence)
  (substitute-if new-item #'aye sequence :start index :count 1))
0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.