私が与えられたとしましょう:
- 整数の範囲
iRange
(つまり、1
からiRange
)および - 希望する数の組み合わせ
考えられるすべての組み合わせの数を見つけて、これらすべての組み合わせを印刷したいと思います。
例えば:
与えられた:iRange = 5
とn = 3
その場合、組み合わせの数はiRange! / ((iRange!-n!)*n!) = 5! / (5-3)! * 3! = 10
組み合わせであり、出力は次のとおりです。
123 - 124 - 125 - 134 - 135 - 145 - 234 - 235 - 245 - 345
もう一つの例:
与えられた:iRange = 4
とn = 2
その場合、組み合わせの数はiRange! / ((iRange!-n!)*n!) = 4! / (4-2)! * 2! = 6
組み合わせであり、出力は次のとおりです。
12 - 13 - 14 - 23 - 24 - 34
これまでの私の試みは次のとおりです。
#include <iostream>
using namespace std;
int iRange= 0;
int iN=0;
int fact(int n)
{
if ( n<1)
return 1;
else
return fact(n-1)*n;
}
void print_combinations(int n, int iMxM)
{
int iBigSetFact=fact(iMxM);
int iDiffFact=fact(iMxM-n);
int iSmallSetFact=fact(n);
int iNoTotComb = (iBigSetFact/(iDiffFact*iSmallSetFact));
cout<<"The number of possible combinations is: "<<iNoTotComb<<endl;
cout<<" and these combinations are the following: "<<endl;
int i, j, k;
for (i = 0; i < iMxM - 1; i++)
{
for (j = i + 1; j < iMxM ; j++)
{
//for (k = j + 1; k < iMxM; k++)
cout<<i+1<<j+1<<endl;
}
}
}
int main()
{
cout<<"Please give the range (max) within which the combinations are to be found: "<<endl;
cin>>iRange;
cout<<"Please give the desired number of combinations: "<<endl;
cin>>iN;
print_combinations(iN,iRange);
return 0;
}
私の問題:
組み合わせの印刷に関連する私のコードの部分は、に対してのみ機能し、一般的にn = 2, iRange = 4
は機能させることができません。n
iRange