方案 - 如何修改列表中的单个元素?
如果我有一个 0 列表,我该如何修改,例如列表中的第 16 个 0?
If I have a list of 0's, how would I modify, for example, the 16th 0 in the list?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如果我有一个 0 列表,我该如何修改,例如列表中的第 16 个 0?
If I have a list of 0's, how would I modify, for example, the 16th 0 in the list?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
你必须自己写。它没有内置到Scheme 中,因为它不符合惯用法,并且可以通过
set-car!
轻松构建。如果您经常这样做,您可能应该考虑使用向量和
向量集!
。You have to write it yourself. It is not built in to Scheme because it's not idiomatic and it can be built easily from
set-car!
.If you are doing this a lot, you should probably look at using vectors and
vector-set!
instead.