For an assignment I have to write two recursive functions that take a number N and return the number of ways there are to add up to that number.
The first function allows permutations, for example: countWithPerms(3) would count 1 + 2 and 2 + 1 as two different solutions, while countIgnorePerms(3) would count them as the same solution.
I wrote the countIgnorePerms() method:
int countWithPerms(int number, int amountLeft)
{
if(amountLeft == 1)
return 0;
else
amountLeft--;
return (countWithPerms(number, amountLeft) + 1) +
(countWithPerms(amountLeft, amountLeft));
}//end countWithPerms()
The first call to this method will have the same number passed to it twice, all subsequent method calls will find the number of sums of (n-1) and add that to the sums of N.
What I am having trouble figuring out is how to modify this method so that it does not accept any permutations. I am not quite sure where to even begin.
Any help is appreciated.
countWithPermsis ever called withamountLeft != 1, you have an infinite recursion. From the text, however, it seems that method should becountIgnorePerms. Fix a typo? – Daniel Fischer Feb 14 '12 at 20:35countIgnorePermsjust counts the number of partitions. You can find some hints on that page. – Daniel Fischer Feb 14 '12 at 20:44