gpt4 book ai didi

rust - 与借阅检查员搏斗

转载 作者:行者123 更新时间:2023-11-29 07:56:44 26 4
gpt4 key购买 nike

我是 Rust 新手。作为学习练习,我正在尝试制作一个基本的二叉树。这是我到目前为止所拥有的:

fn main() {
let data = vec![6,1,2,3,4,5];

let mut root = Node::<i32> { value: data[0], left: None, right: None };

for val in data {
createAndInsert::<i32>(&root, val);
}
println!("Root value: {}", root.value);
}

fn createAndInsert<T: PartialOrd>(mut root: &Node<T>, value: T) {
let mut n = Node::<T> { value: value, left: None, right: None };
insert::<T>(&root, &n);
}

fn insert<T: PartialOrd>(mut curr: &Node<T>, new: &Node<T>) {
if new.value > curr.value {
match curr.right {
Some(ref n) => insert(n, new),
None => curr.right = Some(Box::new(*new))
}
} else {
match curr.left {
Some(ref n) => insert(n, new),
None => curr.left = Some(Box::new(*new))
}
}
}

struct Node<T: PartialOrd> {
value: T,
left: Option<Box<Node<T>>>,
right: Option<Box<Node<T>>>,
}

我得到的编译器错误:

test.rs:21:48: 21:52 error: cannot move out of borrowed content
test.rs:21 None => curr.right = Some(Box::new(*new))
^~~~
test.rs:26:47: 26:51 error: cannot move out of borrowed content
test.rs:26 None => curr.left = Some(Box::new(*new))
^~~~
test.rs:21:21: 21:54 error: cannot assign to immutable field `curr.right`
test.rs:21 None => curr.right = Some(Box::new(*new))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.rs:26:21: 26:53 error: cannot assign to immutable field `curr.left`
test.rs:26 None => curr.left = Some(Box::new(*new))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: aborting due to 4 previous errors

我已经被所有的 refs 和 muts 以及 &'s 和 *'s 缠住了,我不知道如何出去。我哪里错了?

最佳答案

你有两个问题:

  • 无法移出借用的上下文:参见 Cannot move out of borrowed content when borrowing a generic type寻求解释。

  • 无法分配给不可变字段:您只有一个 &Node<T> ;修改 Node你需要一个&mut Node<T> . mut curr在模式中只是使 binding 可变,这意味着您可以为 curr 分配一个新值.但是,您不能修改 curr 的内容指的是。传播 & -到- &mut在整个代码中进行转换,它会起作用。

关于rust - 与借阅检查员搏斗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31153517/

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