I have a list of things (I'll call it L), an index(N) and a new thing(T). If I want to replace the thing in L at N with T, 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, T, and the last part using list? Or is there a better way to do this?
|
|
|
|
|
|
|
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 |
||
|
|
|
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):
|
||||
|
|
|
Does
work ? (by the way - I'm a lisp noob and don't currently have access to a lisp vm to check this) |
||
|
|
|
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
where A is an array (although However, if you must be functional, that is
Then you should use the Common Lisp equivalent of hazzen's code:
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. |
||
|
|
|
|
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. That way, you'll amortize away the consing (memory) and the iteration (cpu). |
||
|
|
|
|
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. |
||
|
|
|
|
I just try to fix hazzen's code:
This code inserted new element in the list. If we want to replace an element:
0 <= n <= length(list) - 1 |
||
|
|
|
|
Use [REPLACE][1] (I use X instead of your T as T is the true value in Lisp):
[1]: http://www.lispworks.com/documentation/HyperSpec/Body/f_replac.htm REPLACE |
||
|
|
