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++

link|improve this question
What do you have so far, and how doesn't it work? – Ignacio Vazquez-Abrams Jun 20 '11 at 3:13
Yes, it's possible. Have you tried anything? – zneak Jun 20 '11 at 3:14
I tried. But the algorithm is exponential. It is basically by checking out all combinations of the numbers in the array and comparing the sum with the value k. – Mike Jun 20 '11 at 3:15
If its NP complete, can you do better than exponential? – Adithya Surampudi Jun 20 '11 at 3:17
What should I say if I get this question in a job interview – Mike Jun 20 '11 at 3:18
show 4 more comments
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.

1 Answer

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#:

        int[] ar = new int[] { 1, 4, 6, 8 };
        int k = 7;

        HashSet<int> set = new HashSet<int>();
        foreach (int n in ar)
        {
            if (set.Contains(n))
                Console.WriteLine("({0}, {1})", k - n, n);

            set.Add(k - n);
        }
link|improve this answer
I am not sure that this will work. Can you provide a link to ideone, so that i can try to test your solution. I am not familiar with C#. – Priyank Bhatnagar Jun 20 '11 at 6:21
"a link to ideone"? What do you mean? – Petar Ivanov Jun 20 '11 at 6:34
Ideone.com . This is a site where you can run your program. Sorry for not being clear. Submit your program in C# and give me the link. – Priyank Bhatnagar Jun 20 '11 at 6:38
ideone.com/aTtVW – Petar Ivanov Jun 20 '11 at 6:42
Code. Question asked was - "a program to print all pairs that add to k from an input array of size n." Answer should have been {(15), (1,4,4,6)}. – Priyank Bhatnagar Jun 20 '11 at 6:48
show 2 more comments
feedback

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