How do I replace an item on a list using Scheme?
-
For example, if my list contains apples oranges and bananas, how do I replace bananas with pineapples?
-
Answer:
Generally you don't replace the item(s) in an existing list. Instead you process the old list and build a new list that contains the modifications you want. Something like this: (define replace-string-in-list (lambda (ls old new) (cond ( (null? ls) '() ) ( (string=? (car ls) old) (cons new (replace-string-in-list (cdr ls) old new )) ) ( else (cons (car ls) (replace-string-in-list (cdr ls) old new )) )))) If you really must replace items in place in an existing list then you can walk the list and use the set-car! procedure (or its equivalent in your dialect of Scheme) to replace the old value with the desired new value whenever you encounter it.
Fantazy B at Yahoo! Answers Visit the source
Related Q & A:
- How can I remove an element in a repeated list?Best solution by Stack Overflow
- How do I replace a pot light bulb?Best solution by Yahoo! Answers
- How do I forward an e-mail to someone using my contact list?Best solution by Yahoo! Answers
- For eBay, how do I delete an item that I am selling?Best solution by Yahoo! Answers
- How do I find the item number on a ebay item?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.