Consider there are three array list each of equal length and having positive, negative and zero in them. I had to write a program to find combinations of which sum comes to zero. So basically, if the arrays were:-
A = {0, -1, 2}
B = {0, -1, -2}
C = {0, -2, 0}
O/P: A[0] + B[0] + C[0], A[2] + B[2] + C[2] etc.
I could think of two ways, 1. Have 3 for loops and calculate the sum using a[i] + b[j] + c[k], if zero print the index. Big O will be O(N^3) 2. Have two for loop but use Binary Search to find the third element which would give the sum as zero. Big O will be O(N^2LogN)
Any other ways?
Thanks.
EDIT: Based on the answers given below, my first soln is the fastest possible. But if the question is about "finding" the number of combinations and NOT printing them, then please see Grigor Gevorgyan answer below.
Omega(N^3)worst case runtime if you have to output all triples that sum to zero, because if all three input sets consist solely of zeros, then all combinations sum to zero and hence the output is of sizeOmega(N^3). In that case even though the binary search finds the range you're after inO(log N)time, it'sOmega(N)time to traverse it. – Steve Jessop Jul 20 '12 at 9:18