“常用公式”在线计算,“设计手册”在线查询
编程求解:输入两个整数n 和m,从数列1,2,3.......n 中随意取几个数,使其和等于m ,要求将其中所有的可能组合列出来.
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 支持支持 反对反对

共 1 个关于本帖的回复 最后回复于 2013-8-16 13:05

沙发
王萍 新来的 发表于 2013-8-16 13:05:08 | 只看该作者
研发埠培训中心
This is acombination generation problem.void findCombination(int n, int m) {  if (n>m) findCombination(m, m);  int aux[n];  memset(aux, 0, n*sizeof(int));  helper(m, 0, aux);}void helper(int dest, int idx, int aux[], int n){  if (dest == 0)    dump(aux, n);  if (dest <= 0 || idx==n) return;  helper(dest, idx+1, aux, n);  aux[idx] = 1;  helper(dest-idx-1, idx+1, aux, n);  aux[idx] = 0;}void dump(int aux[], int n) {  for (int i=0; i<n; i++)    if (aux) printf(“%3d”,i+1);  printf(“\n”);}PS: this is not an elegant implementation,however, it is not necessary to use gray code or other techniques for such aproblem, right?
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注我们

360网站安全检测平台