gpt4 book ai didi

indexing - 有没有办法在 Rust 中用索引折叠?

转载 作者:行者123 更新时间:2023-11-29 07:45:04 25 4
gpt4 key购买 nike

在 Ruby 中,如果我有一个数组 a = [1, 2, 3, 4, 5] 并且我想得到每个元素乘以其索引的总和

a.each.with_index.inject(0) {|s,(i,j)| s + i*j}    

在 Rust 中是否有一种惯用的方法来做同样的事情?到目前为止,我已经

a.into_iter().fold(0, |x, i| x + i)

但这并没有考虑到索引,而且我真的想不出一种方法让它考虑到索引。这可能吗?如果可能,怎么做?

最佳答案

你可以用 enumerate 链接它:

fn main() {
let a = [1, 2, 3, 4, 5];
let b = a.into_iter().enumerate().fold(0, |s, (i, j)| s + i * j);

println!("{:?}", b); // Prints 40
}

关于indexing - 有没有办法在 Rust 中用索引折叠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41091641/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com