gpt4 book ai didi

rust - ListNode的下一个字段类型为Option>,是否正确?

转载 作者:行者123 更新时间:2023-11-29 08:28:38 26 4
gpt4 key购买 nike

我试图解决 https://leetcode.com/problems/add-two-numbers ,这个问题很容易,而由于借用问题我无法在 rust 中完成它。我试了几个 3 小时,我怀疑 ListNodenext字段类型为 Option<Box<ListNode>>不正确。

当我切换到 c# 时,我很快就完成了这个问题。以下是 c# 版本的解决方案。我无法将它翻译成 Rust。

public class Solution {
public ListNode AddTwoNumbers(ListNode l1, ListNode l2) {
ListNode re = null;
ListNode next = null;
int carry = 0;
while(l1 != null || l2 != null) {
var val = (l1 != null ? l1.val : 0) + (l2 != null ? l2.val : 0) + carry;
carry = val / 10;
val %= 10;
if (re != null){
next.next = new ListNode(val);
next = next.next;
} else {
re = new ListNode(val);
next = re;
}
if (l1 != null) {
l1 = l1.next;
}
if (l2 != null) {
l2 = l2.next;
}
}
if (carry > 0) {
next.next = new ListNode(carry);
}
return re;
}
}

最佳答案

根据@rodrigo 的建议。我最终以递归函数的方式解决了这个问题。

fn internal_add_two_number(
mut l1: &Option<Box<ListNode>>,
mut l2: &Option<Box<ListNode>>,
mut carry: i32,
) -> Option<Box<ListNode>> {
let mut sum = carry;
if l1.is_none() && l2.is_none() {
if carry > 0 {
return Some(Box::new(ListNode::new(carry)));
}
return None;
}
if let Some(p) = l1 {
sum += p.val;
l1 = &p.next;
}
if let Some(p) = l2 {
sum += p.val;
l2 = &p.next;
}
carry = sum / 10;
sum = sum % 10;

Some(Box::new(ListNode {
val: sum,
next: internal_add_two_number(l1, l2, carry),
}))
}

impl Solution {
pub fn add_two_numbers(
l1: Option<Box<ListNode>>,
l2: Option<Box<ListNode>>,
) -> Option<Box<ListNode>> {
internal_add_two_number(&l1, &l2, 0)
}
}

关于rust - ListNode的下一个字段类型为Option<Box<ListNode>>,是否正确?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57335103/

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