C++ 算法问题 根据输入 计算一个数组中N个数相加的所有组合
伪代码inta[20];intnumber;如果number=n则算出a中所有元素n个元素相加有多少种组合number=3算出a中3个元素相加的所有组合...
伪代码
int a[20];
int number;
如果number=n 则算出a中所有元素 n个元素相加 有多少种组合
number = 3 算出 a中 3个元素相加 的所有组合 展开
int a[20];
int number;
如果number=n 则算出a中所有元素 n个元素相加 有多少种组合
number = 3 算出 a中 3个元素相加 的所有组合 展开
展开全部
到底是求组合数目? 还是所有组合?
迭代啊、
int a[20];
int n;
int cnt = 0;
int b[20];
void func( int idx , int depth )
{
if( depth == n ) {
handle(b) // b is a solution
cnt++;
return ;
}
if ( idx < 20 ){
func ( idx+1 , depth ) ; // ignore a[idx]
b[depth] = a[idx];
func ( idx+1 , depth+1 ); // choose a[idx]
}
}
迭代啊、
int a[20];
int n;
int cnt = 0;
int b[20];
void func( int idx , int depth )
{
if( depth == n ) {
handle(b) // b is a solution
cnt++;
return ;
}
if ( idx < 20 ){
func ( idx+1 , depth ) ; // ignore a[idx]
b[depth] = a[idx];
func ( idx+1 , depth+1 ); // choose a[idx]
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询