当给定参数是两个项目和一个列表时,如何在 DrScheme 中将列表中的一个项目替换为另一个项目?
当给定参数是两个项目和一个列表时,如何在 DrScheme 中将列表中的一个项目替换为另一个项目?
How to replace an item by another in a list in DrScheme when given paramters are two items and a list?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将
map
与函数结合使用,当参数等于要替换的项目时返回替换项目,否则返回替换项目。Use
map
with a function which returns the replacement item when its argument is equal to the item you want to replace and the argument otherwise.这会将列表 lst 中所有出现的 fsym 替换为 DrRacket 中的符号 tsym
This replaces all the occurrences of fsym in the list lst to the symbol tsym in DrRacket