You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/codes/swift/chapter_backtracking/subset_sum_i_naive.swift

52 lines
1.6 KiB

/**
* File: subset_sum_i_naive.swift
* Created Time: 2023-07-02
* Author: nuomi1 (nuomi1@qq.com)
*/
/* I */
func backtrack(state: inout [Int], target: Int, total: Int, choices: [Int], res: inout [[Int]]) {
// target
if total == target {
res.append(state)
return
}
//
for i in choices.indices {
// target
if total + choices[i] > target {
continue
}
// total
state.append(choices[i])
//
backtrack(state: &state, target: target, total: total + choices[i], choices: choices, res: &res)
// 退
state.removeLast()
}
}
/* I */
func subsetSumINaive(nums: [Int], target: Int) -> [[Int]] {
var state: [Int] = [] //
let total = 0 //
var res: [[Int]] = [] //
backtrack(state: &state, target: target, total: total, choices: nums, res: &res)
return res
}
@main
enum SubsetSumINaive {
/* Driver Code */
static func main() {
let nums = [3, 4, 5]
let target = 9
let res = subsetSumINaive(nums: nums, target: target)
print("输入数组 nums = \(nums), target = \(target)")
print("所有和等于 \(target) 的子集 res = \(res)")
print("请注意,该方法输出的结果包含重复集合")
}
}