vote up 0 vote down star
1

Hi.

Let's say that we have two boxes of pencils (in first box just blue and in second just red pencils). So the question now is, in how many ways can we put x red and y blue pencils in the line?

Example: we have 3 Red pencils, and 1 Blue. Then we have 4 different ways. Combinations: BRRR, RBRR, RRBR, RRRB.

So with 10 Red and 10 Blue pencils we have 184756 different ways of putting them in line. So guys, how to write this in a recursive way?

Thank you very much for your help.

flag
2  
Is this homework? If it isn't, why do you have to use recursion - wouldn't it be easier to use the appropriate formulas for permutations and combinations? – Thomas Owens Nov 7 at 18:06
Minor bug: "Then we have 4 different ways. Combinations: BRRR, RBRR, RRBR, RRRRB." should be "Then we have 4 different ways. Combinations: BRRR, RBRR, RRBR, RRRB." – cartoonfox Nov 7 at 18:10
Yes, it's just a part of one very big homework :(. So, recursive way has to be. @cartoonfox: i edited, thanks. – Davor Nov 7 at 18:13
@Davor: If it is homework, please mention it up front. Otherwise it looks as if you are trying to get others to do your homework for you. – MAK Nov 7 at 19:02

3 Answers

vote up 3 vote down

This sounds like homework, so here are some hints:

When dealing with recursion, you need to think about the base case. Here this base case is 0 pencils. How many ways can you order 0 pencils?

Ok, now the recursive cases: how many ways can you order a non-zero amount of pencils? If you have any red pencils then you can start with a red pencil, followed by the rest of the pencils. If you have any blue pencils then you can start with a blue pencil, followed by the rest of the pencils.

link|flag
vote up 0 vote down

Think binary tree, depth = # of pencils in the line.

The root is zero pencils. Level 1 had one blue pencil and one red pencil. Level 2....you see the pattern.

link|flag
vote up -3 vote down

there is no need to do it in recursion form since it can be calculated using (x+y)!/(x!y!) but if u're insistent u can use something like this: C(x,y)=C(x-1,y)+C(x,y-1) with base cases: C(z,0)=C(0,z)=1 that z is any natural number ;)

link|flag
Sorry, -1 from me for "u're" and "u". This isn't Twitter - spell them out. – duffymo Nov 7 at 19:44
don't be stupid, u know my answer was better and UR :P react was because of jealousy ;) – David Coppernick Nov 7 at 20:00
I wonder how many super votes a person can grant :D – David Coppernick Nov 7 at 20:09
@David - yeah, that's it. – duffymo Nov 7 at 20:56
Thank you David, that formula C(x,y)=... was all i needed. Non-recursive way which you suggested is second part of the program, but we can't use any factorial so that formula (x+y)!/(x!y!) doesn't count. You have to use Pascal's triangle. But I already figured it out ;) – Davor Nov 8 at 14:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.