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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/* *
* F i l e : s u b s e t _ s u m _ i _ n a i v e . s w i f t
* C r e a t e d T i m e : 2 0 2 3 - 0 7 - 0 2
* A u t h o r : n u o m i 1 ( n u o m i 1 @ q q . c o m )
*/
/* 回 溯 算 法 : 子 集 和 I */
func backtrack ( state : inout [ Int ] , target : Int , total : Int , choices : [ Int ] , res : inout [ [ Int ] ] ) {
// 子 集 和 等 于 t a r g e t 时 , 记 录 解
if total = = target {
res . append ( state )
return
}
// 遍 历 所 有 选 择
for i in stride ( from : 0 , to : choices . count , by : 1 ) {
// 剪 枝 : 若 子 集 和 超 过 t a r g e t , 则 跳 过 该 选 择
if total + choices [ i ] > target {
continue
}
// 尝 试 : 做 出 选 择 , 更 新 元 素 和 t o t a l
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 {
/* D r i v e r C o d e */
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 ( " 请注意,该方法输出的结果包含重复集合 " )
}
}