why do we need DP here? question says find the longest intersection, not any intersection. am i missing a point?
There are lot of solutions to this.
int [] a = {...}; // n elements
int [] b = {...}; // m elements
You can store one array in a dictionary and for each element in the other array check the dictionary. That O(n). THis will cost you more space due to dictionary. and it s not in-place
Another solution would be for each element in a, you can do a linear search on b. which is O(n.m)
Another would be ;if you sort both of the arrays. Then for each element in one array do a binary search in another array. You will find the intersection of two. and this will be mlogn + nlogn or nlogm + mlogm
do we really need DP here?
a = {1, 2, 3, 4, 5, 6, 7}andb = {1, 3, 4, 5, 8}, then do you expect the result to be{1, 3, 4, 5}or{3, 4, 5}? The first is the longest common subsequence problem, the second is the longest common substring problem. There are well-known solutions to each. – Mac Oct 19 '11 at 3:35