Is it possible to write a program to print all pairs that add to k from an input array of size n. If so how? I heard this problem is NP-Complete. I was wondering if we can provide a solution to this problem in typical programming languages like C/C++
feedback
|
closed as not a real question by zneak, GWW, Woot4Moo, Chris, pavium Jun 20 '11 at 3:30
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. See the FAQ for guidance on how to improve it.
|
It can't be NP-Complete as there is an obvious O(n^2) solution with two nested loops over the array and checking if the sum is k. There is however an O(n) solution using hashtable. Here is the solution in C#:
| |||||||||||
feedback
|