idiomatic rust (#1485)

* idomatic rust

* More idiomatic rust

* make rust code more idiomatic

* update
This commit is contained in:
rongyi
2024-08-23 02:33:47 +08:00
committed by GitHub
parent 6b2c38cae4
commit 8a6ce26f6a
4 changed files with 19 additions and 30 deletions
@@ -6,7 +6,7 @@
/* 回溯算法:子集和 I */
fn backtrack(
mut state: Vec<i32>,
state: &mut Vec<i32>,
target: i32,
choices: &[i32],
start: usize,
@@ -14,7 +14,7 @@ fn backtrack(
) {
// 子集和等于 target 时,记录解
if target == 0 {
res.push(state);
res.push(state.clone());
return;
}
// 遍历所有选择
@@ -28,7 +28,7 @@ fn backtrack(
// 尝试:做出选择,更新 target, start
state.push(choices[i]);
// 进行下一轮选择
backtrack(state.clone(), target - choices[i], choices, i, res);
backtrack(state, target - choices[i], choices, i, res);
// 回退:撤销选择,恢复到之前的状态
state.pop();
}
@@ -36,11 +36,11 @@ fn backtrack(
/* 求解子集和 I */
fn subset_sum_i(nums: &mut [i32], target: i32) -> Vec<Vec<i32>> {
let state = Vec::new(); // 状态(子集)
let mut state = Vec::new(); // 状态(子集)
nums.sort(); // 对 nums 进行排序
let start = 0; // 遍历起始点
let mut res = Vec::new(); // 结果列表(子集列表)
backtrack(state, target, nums, start, &mut res);
backtrack(&mut state, target, nums, start, &mut res);
res
}