Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Suppose array is: [1, 2, 5, 7, 10, 13, 17, 21] and you have to find 5 numbers whose sum is equal to 31. What would be the algorithm?

share|improve this question
What have you tried ?? – Shashank Kadne Mar 9 '12 at 5:26
5  
Um. Knapsack problem. NP-complete. – Louis Wasserman Mar 9 '12 at 5:26
1  
Is this a question ? First mention what have you tried. – Rakesh Mar 9 '12 at 5:26
If you don't care about efficiency, maybe just brute-force it...? – Daniel Mar 9 '12 at 5:28
NP-complete means there is no efficient solution -- not really. The best you can do is brute force. – Louis Wasserman Mar 9 '12 at 5:34
show 2 more comments

closed as not a real question by talnicolas, iammilind, Alan Stokes, pst, talonmies Mar 9 '12 at 6:07

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

For a small array such as you have, efficiency doesn't mean much. The trick is to make it fast. Something like this would work (Written in Matlab, but it would translate to any language fairly easily):

array=[1, 2, 5, 7, 10, 13, 17, 21];
sum_val=31;

for a=1:(length(array)-4]
for b=(a+1):(length(array)-3)
for c=(b+1):(length(array)-2)
for d=(c+1):(length(array)-1)
for e=(d+1):(length(array)-0)
if array(a)+array(b)+array(c)+array(d)+array(e)=sum_val
fprintf("%i+%i+%i+%i+%i=%i",array(a),array(b),array(c),array(d),array(e),sum_val);
end
end
end
end
end
share|improve this answer
Thanks Pearsonartphoto, actually that small array was just to give an example.. :) – DarkKnight Mar 9 '12 at 5:45
@DarkKnight: I figured as much... There's quite a bit of optimization that could be done, for instance, if you are over the sum_value, then skip to the next loop, etc. But it's a start. – PearsonArtPhoto Mar 9 '12 at 5:45
1  
@Pearsonartphoto:(+1) not for the solution, but for your photographs...;)...Awesome photography..:) – Shashank Kadne Mar 9 '12 at 5:46

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