I have an programming assignment in Java.

I have implemented it by making an nCr ( http://en.wikipedia.org/wiki/Combination ) function then using a double for loop to make the triangle by printing it out.

However, the assignment calls for a uneven 2d array to be created and then populated by adding the two numbers from the previous lines and then printing the array out.

I know I am going to have to do the assignment the way it asks, however I have a small feeling that (at least for small triangles anyway) that the approach I have implemented is better.

Which is the better approach?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I'd think the method called for by the assignment would be better. You're method requires a number of multiplications to calculate each of the elements of the triangle. This number will increase for each row of the triangle you need to calculate.

The assignment's method, however, requires a single addition for each element of the triangle.

link|improve this answer
feedback

If I understand your question, you are trying to compare two approaches to generating Pascal's triangle:

  1. By running an nCr function to populate each cell of the triangle.
  2. By generating the triangle in one pass by filling in each cell by a simple addition.

The second approach seems hands-down better. Am I missing something? Even if you use memoization in your nCr function there is overhead in those calls.

link|improve this answer
Using nCr I am not generating an array at all. – Portablejim Aug 2 '11 at 6:33
Ah, I see now. I must have misread. Still, I would say that two lookups and one addition per cell would be a win almost always. Your assignment might require you to keep the whole triangle in memory but in practice you only have to keep the last two rows. As values of n and k get larger the const of the nCr function grows. This does not happen with the incremental approach. – Ray Toal Aug 2 '11 at 6:39
feedback

Your Answer

 
or
required, but never shown

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