找出数组中元素和为指定值的所有组合
思路:遍历所有的组合,判断每一种组合的值是否满足条件。
#include <iostream>
#include <vector>
using namespace std;
void visit(vector<int> &arr, int pos, int n, int sum, int target, vector<int> &buf) {
if (pos == n) {
return;
}
buf.push_back(arr
原创
2021-02-16 23:40:40 ·
2577 阅读 ·
0 评论