seq 上的滑动窗口
在 Clojure 中,在(有限的,不是太大的)seq 上设置滑动窗口的最好方法是什么?我应该只使用 drop
和 take
并跟踪当前索引还是有更好的方法我错过了?
In Clojure, what would be the nicest way to have a sliding window over a (finite, not too large) seq? Should I just use drop
and take
and keep track of the current index or is there a nicer way I'm missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为步骤 1 的 partition 可以做到这一点:
I think that partition with step 1 does it:
如果你想在windows上操作,用map也可以很方便:
If you want to operate on the windows, it can also be convenient to do this with map:
我不知道
partition
可以做到这一点,所以我这样实现了I didn't know
partition
could do this so I implemented it this way